python math 常用的数学函数

十六进制、八进制和二进制记数
二进制:0b1
八进制:0o1
十六进制:0x1
eval参数是一个字符串,可以把这个字符串当成表达式来求值


常用的数学函数
math.ceil(x) 函数返回数字的上入整数。
math.floor(x)返回数字的下舍整数。
math.fabs(x) 返回绝对值
math.factorial(x) 阶乘
math.hypot(x,y) x*x+y*y
math.pow(x,y) x的y 次方
math.trunc(x*x) 截取整数部分
math.isnan(x) 判断是否NaN(not a Number)
math.degree(x) 弧度转角度
math.radians(x) 角度转弧度

你可能感兴趣的:(python math 常用的数学函数)