菟子小姐 4星
共回答了4个问题 评论
sqrt函数可以使用math库。譬如:
import matha = 4print math.sqrt(4) # 2
也可以直接利用python的**运算符
a = 8a**(1/3) # 开3次方相当于1/3次乘方 结果是2 math中其他常用的数学函数: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) 角度转弧度。
19小时前
猜你喜欢的问题
5个月前1个回答
5个月前1个回答
5个月前1个回答
5个月前2个回答
5个月前1个回答
5个月前2个回答
热门问题推荐
3个月前1个回答
1个月前3个回答
4个月前3个回答
4个月前1个回答
4个月前1个回答
3个月前3个回答
3个月前1个回答
2个月前1个回答
3个月前2个回答