Open In App

Python | sympy.is_comparable() method

Improve
Improve
Like Article
Like
Save
Share
Report

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


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