2023-06-25 Python - math.gamma(x):ガンマ関数 Python3 mathモジュール 概要 インポート 実行結果 表示イメージ 概要gamma(x) ガンマ関数 mathモジュール ちょこっとメモガンマ関数(複素階乗)階乗を一般化する関数。複素数全体におよぶ。 インポート import math 実行結果 import math print(math.gamma(1)) print(math.gamma(2)) print(math.gamma(3)) 表示イメージ 1.0 1.0 2.0