2023-06-22 Python - math.gcd(*int):最大公約数 mathモジュール Python3 概要 インポート 実行結果 表示イメージ 概要gcd(*int) 最大公約数を返す。 mathモジュール インポート import math 実行結果 import math print(math.gcd(10, 25)) print(math.gcd(13, 26, 39)) 表示イメージ 5 13