Open In App

Python | sympy.gcd() method

Improve
Improve
Like Article
Like
Save
Share
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.




# import sympy
from sympy import *
  
# Using sympy.gcd() method
gfg = gcd(6, 8)
  
print(gfg)


Output :

2

Example #2 :




# import sympy
from sympy import *
  
# Using sympy.gcd() method
gfg = gcd(177, 81)
  
print(gfg)


Output :

3


Last Updated : 02 Aug, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads