函数是计算 x 的 y 次方,如果 z 在存在,则再对结果进行取模,其结果等效于 pow(x,y) %z。

注意: pow() 通过内置的方法直接调用,内置方法会把参数作为整型,而 math 模块则会把参数转换为 float。

x -- 数值表达式。 y -- 数值表达式。 z -- 数值表达式。 返回 x y (x的y次方) 的值。 以下展示了使用 pow() 方法的实例:
#!/usr/bin/python # -*- coding: UTF-8 -*- import math # 导入 math 模块 print " math.pow(100, 2) : " , math . pow ( 100 , 2 ) # 使用内置,查看输出结果区别 print " pow(100, 2) : " , 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 pow(100, 2) : 10000 math.pow(100, -2) : 0.0001 math.pow(2, 4) : 16.0 math.pow(3, 0) : 1.0

Python 数字 Python 数字

>>> pow(11.2,3.2,2) # 结果报错 Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: pow() 3rd argument not allowed unless all arguments are integers
Bruce.chen