python中如何求幂函数 python求幂的函数

主机教程 建站分享 2年前 (2022-09-13) 169次浏览

文章摘要:python中如何求幂函数 python求幂的函数

python中可以使用pow函数求幂,具体方法如下: pow():pow()函数的作用是返回x的y次方的值。 […]

python中可以使用pow函数求幂,具体方法如下:

pow():pow()函数的作用是返回x的y次方的值。

pow()函数语法:

math.pow( x, y )

pow()函数使用方法:

import math #导入math模块

print "math.pow(100, 2) : ", math.pow(100, 2)

print "math.pow(100, -2) : ", math.pow(100, -2)

print "math.pow(2, 4) : ", math.pow(2, 4)

print "math.pow(3, 0) : ", math.pow(3, 0)

输出结果为:

math.pow(100, 2) : 10000.0

math.pow(100, -2) : 0.0001

math.pow(2, 4) : 16.0

math.pow(3, 0) : 1.0


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python中如何求幂函数 python求幂的函数
文章链接:http://www.7966.org/post/15509.html
转载请注明出处

喜欢 (0)