1.查看所有函数名列表:dir(math)
2.查看具体定义及函数原型:help(math)
3.内定义常数:math.pi #圆周率;math.e #自然对数
4.内定义函数:
math.ceil(x) # 对x向上取整,比如x=1.2,返回2
math.floor(x) # 对x向下取整,比如x=1.2,返回1
math.pow(x,y) # 指数运算,得到x的y次方
math.log(x) # 对数,默认基底为e。可以使用base参数,来改变对数的基地。比如math.log(100,base=10)
math.sqrt(x) # 平方根
math.degrees(x) #將 x (弧长) 转成角度,与 radians 为反函数
math.exp(x) #返回 ex
math.fabs(x) #绝对值
math.factorial(x) #返回 x!
math.cos(x) #余弦值
math.sin(x) #正弦值
math.acos(x) #反余弦
math.asin(x) #反正弦
math.tan(x) #正切
math.atan(x) #反正切
math.acosh(x) #反双曲余弦
math.asinh(x) #反双曲正弦
math.atanh(x) #反双曲正切
时间: 2024-10-27 13:21:53