发布时间:2019-08-30 08:33:10编辑:auto阅读(3180)
1.计算乘方
pow(4,3)
# 结果64
2.计算平方
import numpy
numpy.square(4)
# 结果16
pow(5,2)
#结果25
import numpy
numpy.sqrt(16)
# 结果4.0
numpy.sqrt(16.)
# 结果4.0
pow(25, 0.5)
#结果5.0
pow(25, .5)
#结果5.0
import math
math.sqrt(25)
#结果5.0
math.sqrt(25.0)
#结果5.0
上一篇: Python – Check if ke
下一篇: Python3 序列解包
47879
46443
37332
34772
29344
26007
24960
19976
19578
18074
5821°
6447°
5961°
5987°
7093°
5937°
5977°
6471°
6435°
7817°