python -- 计算 平方,乘方,平方根

1.计算乘方

pow(4,3)
# 结果64

2.计算平方

import numpy
numpy.square(4)
# 结果16
pow(5,2)
#结果25

3.平方根

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

    原文作者:Islotus
    原文地址: https://blog.csdn.net/islotus/article/details/61858300
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞