Open In App

Python | sympy.ilcm() method

Last Updated : 02 Aug, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of sympy.ilcm() method, we can find the least common multiple of two nonnegative integers that is passed as a parameter in the sympy.ilcm() method.
Syntax : sympy.ilcm(var1, var2) Return : Return value of least common multiple of two nonnegative integers.
Example #1 : In this example we can see that by using sympy.ilcm() method, we are able to find the least common multiple of any two nonnegative integers that is passed as parameters. Python3 1=1
# import sympy
from sympy import *

# Using sympy.ilcm() method
gfg = ilcm(2, 3)

print(gfg)
Output :
6
Example #2 : Python3 1=1
# import sympy
from sympy import *

# Using sympy.ilcm() method
gfg = ilcm(7, 6)

print(gfg)
Output :
42

Next Article
Article Tags :
Practice Tags :

Similar Reads