「Python」pow関数でべき乗を取得するサンプル
環境
PyCharm 2021.3 Python 3.9.7
書式
pow(base, exp[, mod])
base の exp 乗を返します; mod があれば、base の exp 乗に対する mod の剰余を返します (pow(base, exp) % mod より効率よく計算されます)。
二引数の形式 pow(base, exp) は、冪乗演算子を使った base**exp と等価です。
使用例
res = pow(10, 2) print("べき乗を求める結果1") print(res) res2 = pow(2, 0) print("べき乗を求める結果2") print(res2) res3 = pow(2, -4) print("べき乗を求める結果3") print(res3)
実行結果
べき乗を求める結果1 100 べき乗を求める結果2 1 べき乗を求める結果3 0.0625