Saturday, July 4, 2026
HomeLanguagesPython | sympy.compare() method

Python | sympy.compare() method

With the help of sympy.compare() method, we can compare the variables and it will return 3 values i.e -1 for smaller, 0 for equal and 1 for greater by using sympy.compare() method.

Syntax : sympy.compare()
Return : Return the value of comparison i.e -1, 0, 1.

Example #1 :
In this example we can see that by using sympy.compare() method, we are able to compare the variables and return 3 values i.e -1 for smaller, 0 for equal and 1 for greater.




# import sympy
from sympy import *
x, y = symbols('x y')
  
# Use sympy.compare() method
gfg = x.compare(y)
    
print(gfg)


Output :

-1

Example #2 :




# import sympy
from sympy import *
x, y = symbols('x y')
  
# Use sympy.compare() method
gfg = x.compare(x)
    
print(gfg)


Output :

0

Example #3 :




# import sympy
from sympy import *
x, y = symbols('x y')
  
# Use sympy.compare() method
gfg = y.compare(x)
    
print(gfg)


Output :

1

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

3 COMMENTS

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12015 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6967 POSTS0 COMMENTS