Python pow() 函数
定义和用法
The pow()
函数返回 x 的 y 次方 (xy)。
如果存在第三个参数,它返回 x 的 y 次方,模 z。
语法
pow(x, y, z)
参数值
参数 | 描述 |
---|---|
x | 一个数字,底数 |
y | 一个数字,指数 |
z | 可选。一个数字,模 |
The pow()
函数返回 x 的 y 次方 (xy)。
如果存在第三个参数,它返回 x 的 y 次方,模 z。
pow(x, y, z)
参数 | 描述 |
---|---|
x | 一个数字,底数 |
y | 一个数字,指数 |
z | 可选。一个数字,模 |
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]