描述
Python數法pow()返回 x 的 y 次冪。如果給出了第三個參數 (z),它將返回 x 的 y 模 z 次冪,即 pow(x, y) % z。
用法
以下是語法pow()方法 -
import math
math.pow( x, y[, z] )
注意− 此函數不可直接訪問,因此需要導入 math 模塊,然後使用 math 靜態對象調用此函數。
參數
x- 要供電的號碼。
y- 用 x 供電的數字
z- (可選)用於模數運算的數字
返回值
此方法返回 x 的值y。
示例
下麵的例子展示了 pow() 方法的用法。
#!/usr/bin/python
import math # This will import math module
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 Number randrange()用法及代碼示例
- Python Number choice()用法及代碼示例
- Python Number sqrt()用法及代碼示例
- Python Number acos()用法及代碼示例
- Python Number floor()用法及代碼示例
- Python Number asin()用法及代碼示例
- Python Number round()用法及代碼示例
- Python Number shuffle()用法及代碼示例
- Python Number exp()用法及代碼示例
- Python Number cmp()用法及代碼示例
- Python Number max()用法及代碼示例
- Python Number min()用法及代碼示例
- Python Number sin()用法及代碼示例
- Python Number uniform()用法及代碼示例
- Python Number ceil()用法及代碼示例
- Python Number cos()用法及代碼示例
- Python Number abs()用法及代碼示例
- Python Number degrees()用法及代碼示例
- Python Number hypot()用法及代碼示例
- Python Number seed()用法及代碼示例
注:本文由純淨天空篩選整理自 Python Number pow() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。