1.内置函数pow()
>>> help(pow) ----查看帮助
Help on built-in function pow in module __builtin__: pow(...) pow(x, y[, z]) -> number /----有3个参数,第三个是可选参数----/ With two arguments, equivalent to x**y. With three arguments, equivalent to (x**y) % z, but may be more efficient (e.g. for longs).
>>> pow(3,2) # 3**2 /----两个参数情况----/
9
>>> pow(3,2,4)# (3**2)%4 /----三个参数的情况----/
1
对3的2次方取余
pow(x,y[,z])虽然有3个参数,但第三个是可选参数,表示对前面的指数取余数
正常情况下用前面两个就好。
2.math.pow()
>>> import math
>>> help(math.pow)
Help on built-in function pow in module math: pow(...) pow(x, y) Return x**y (x to the power of y).
>>> math.pow(3,2)
9.0
两个参数math.pow(x,y)就很容易理解了,就是单纯的x 的y次方。