Monday, December 15, 2025
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

Most Popular

Dominic
32448 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6817 POSTS0 COMMENTS
Nicole Veronica
11954 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12031 POSTS0 COMMENTS
Shaida Kate Naidoo
6955 POSTS0 COMMENTS
Ted Musemwa
7202 POSTS0 COMMENTS
Thapelo Manthata
6899 POSTS0 COMMENTS
Umr Jansen
6884 POSTS0 COMMENTS