Python pow() 函数
描述
pow() 函数返回 x 的 y 次方。它等同于 xy。该函数具有第三个可选参数 mod。如果给出 mod 值,函数返回 (xy) % mod 的结果值。
语法
pow(x, y, mod =1)
参数
- x – 数值操作数,用作底数
-
y – 数值操作数,用作指数
-
mod – 数值操作数,用作模运算的分母
示例
x = 2
y = 3
power = pow(x,y)
print ("x: ",x,"y:",y, "pow(x,y): ", power)
x=49
y = 0.5
power = pow(x, y)
print ("x: ",x,"pow(x,y): ", power)
x = 10
y = 2
z = 6
power = pow(x,y,z)
print ("x: ",x,"y:",y, "z:",z, "pow(x,y,z): ", power)
它将产生以下输出
x: 2 y: 3 pow(x,y): 8
x: 49 pow(x,y): 7.0
x: 10 y: 2 z: 6 pow(x,y,z): 4