# Python CodeRecipe|pow()の使い方

HomeFunctions

# pow()の例1

Return the value of 4 to the power of 3 (same as 4 * 4 * 4):

    x = pow(4, 3)

# pow()の定義及び使い方

pow()関数はxのy乗(キシ)を返します。 3番目のパラメータが存在する場合は、xのy乗 (係数z) を返します。

# pow()の構文

    pow(x, y, z)

# pow()の引数

x 数値、基数

y 数値、指数

z オプション。数、係数

# pow()の例2

Return the value of 4 to the power of 3, modulus 5 (same as (4 * 4 * 4) % 5):

    x = pow(4, 3, 5)

HomeFunctions