Python pow()関数でべき乗を計算する方法

環境
Python 3.9.13
Windows 10 Home 64bit
PyCharm 2022.2.1 (Community Edition)

構文
pow(引数1,引数2)
引数1にべき乗の元となる数を指定し、引数2にはべき乗の指数を指定します。

使用例

result = pow(5, 4)

print(result)

結果
625

Python

Posted by arkgame