python中乘方运算符号


python中乘方运算符号

文章插图
可以使用math库import matha = 4print math.sqrt(4)# 2也可以直接利用python的**运算符a = 8a**(1/3)# 开3次方相当于1/3次乘方结果是2math中其他常用的数学函数:ceil(x) 取顶floor(x) 取底fabs(x) 取绝对值factorial (x) 阶乘hypot(x,y)sqrt(x*x+y*y)pow(x,y) x的y次方sqrt(x) 开平方log(x)log10(x)trunc(x)截断取整数部分isnan (x)判断是否NaN(not a number)degree (x) 弧度转角度radians(x) 角度转弧度 。


    推荐阅读