Sunday, June 14, 2026
HomeLanguagesPython | sympy.is_comparable() method

Python | sympy.is_comparable() method

With the help of sympy.is_comparable() method, we can compute the real number with precision and return True if computed value is real with precision by using sympy.is_comparable() method.

Syntax : sympy.is_comparable()
Return : Return boolean value if real number is computed.

Example #1 :
In this example we can see that by using sympy.is_comparable() method, we are able to evaluate the expression and if computed value is real with precision it will return True else False.




# import sympy
from sympy import * 
  
x, y, z = symbols('x y z')
  
# Use sympy.is_comparable() method
gfg = (3 * x + 2 * tan(y + I * pi) + log(2 * x)).is_comparable
    
print(gfg)


Output :

False

Example #2 :




# import sympy
from sympy import * 
  
x, y, z = symbols('x y z')
  
# Use sympy.is_comparable() method
gfg = (pi / 2).is_comparable
    
print(gfg)


Output :

True

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

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS