Python sympy.lcm()方法
在sympy.lcm()方法的帮助下,我们可以找到作为参数传入sympy.lcm()方法的两个数字的最小公倍数。
语法 : sympy.lcm(var1, var2)
返回:返回最小公倍数的值。
例子#1 :
在这个例子中,我们可以看到,通过使用sympy.lcm()方法,我们能够找到作为参数传递的任何两个数字的最小公倍。
# import sympy
from sympy import *
# Using sympy.lcm() method
gfg = lcm(61, 24)
print(gfg)
输出 :
1464
例子#2 :
# import sympy
from sympy import *
# Using sympy.lcm() method
gfg = lcm(17, 16)
print(gfg)
输出 :
272