Wednesday, July 3, 2024
HomeLanguagesPythonPython | sympy.is_real method

Python | sympy.is_real method

With the help of sympy.is_real method, we can check whether element is real or not this method will return the boolean value i.e True or False.

Syntax : sympy.is_real
Return : Return True if real else False.

Example #1 :
In this example we can see that by using sympy.is_real method, we are able to check the real value and it will return a boolean value.




# import sympy
from sympy import *
  
# Use sympy.is_real method
gfg = simplify(2).is_real
    
print(gfg)


Output :

True

Example #2 :




# import sympy
from sympy import *
  
# Use sympy.is_real method
gfg = simplify(5.5).is_real
    
print(gfg)


Output :

True

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments