Python的內置函數math.gcd()
用于計算兩個整數的最大公約數(greatest common divisor,GCD)。該函數接受兩個參數,這兩個參數都應該是整數。
參數限制如下:
TypeError
。ValueError
。以下是一個使用math.gcd()
函數的示例:
import math
a = 56
b = 98
result = math.gcd(a, b)
print(f"The GCD of {a} and {b} is {result}")
輸出結果:
The GCD of 56 and 98 is 14