Open In App

Python | sympy.gcd() method

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

# Using sympy.gcd() method
gfg = gcd(6, 8)

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

# Using sympy.gcd() method
gfg = gcd(177, 81)

print(gfg)
Output :
3

Next Article
Article Tags :
Practice Tags :

Similar Reads