常量
import math # 常量 e print(math.e) # 常量 π print(math.pi)
tan(x)
返回 x 弧度的正切值。看下示例:
import math print(math.tan(math.pi / 3))
atan(x)
返回 x 的反正切值。看下示例:
import math print(math.atan(1))
sin(x)
返回 x 弧度的正弦值。看下示例:
import math print(math.sin(math.pi / 3))
asin(x)
返回 x 的反正弦值。看下示例:
import math print(math.asin(1))
cos(x)
返回 x 弧度的余弦值。看下示例:
import math print(math.cos(math.pi / 3))
acos(x)
返回 x 的反余弦值。看下示例:
import math print(math.acos(1))