スポンサーリンク

[python] n乗をする

pythonでn乗の値を取得する場合は、

mathモジュールのpowメソッドで取得できます。

 

サンプルコード

import math

print(math.pow(2, 6)) # 64.0

2の6乗の値が取得できました。