常量函数
math.pi
数学常数π= 3.141592……
math.e
数学常数e = 2.718281….
math.tau
数学常数τ= 6.283185……
取整函数
math.ceil(x):
向上取整
math.floor(x):
向下取整 同int()
math.round(x):
四舍五入
math.modf(x):
分别取1
2
3
44.25) math.modf(
(0.25, 4.0)
4.33) math.modf(
(0.33000000000000007, 4.0)
符号函数
math.fabs(x)
返回绝对值x。
math.factorial(x)
返回 x!。如果x不是积分或者是负的,就会产生ValueError。
基本初等函数
math.exp(x)
返回 ex也就是 math.e**x
math . pow(x,y)
返回x的y次方,即返回 xy
math.sqrt(x)
返回√x
math.log(x,a)
返回 ,若不写a 內定 e
三角函数
math.degrees(x)
将角x从弧度转换成角度。
math.radians(x)
把角x从度转换成弧度。
math.acos(x)
返回 x 的反余弦
math.asin(x)
返回 x 的反正弦。
math.atan(x)
返回 x 的反正切。
math.cos(x)
返回 x 的余弦。
math.sin(x)
返回 x 的正弦。
math.tan(x)
返回 x 的正切。