スポンサーリンク

[python] 階乗の取得

pythonで階乗した値を取得するには、

mathモジュールのfactorialメソッドを使えば簡単に取得できます。

 

サンプルコード

import math

print(math.factorial(5)) # 120