python中的pow函数怎么用 pow函数在python中怎么用

主机教程 建站分享 2年前 (2022-12-19) 193次浏览

文章摘要:python中的pow函数怎么用 pow函数在python中怎么用

在python中使用pow函数的方法 pow:pow()函数的作用是返回x的y次方的值。 pow()函数语法: […]

在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中的pow函数怎么用 pow函数在python中怎么用
文章链接:http://www.7966.org/post/15434.html
转载请注明出处

喜欢 (0)