Open In App

Python | sympy.is_integer method

Last Updated : 13 May, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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

Syntax : sympy.is_integer
Return : Return True if integer else False.

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




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


Output :

True

Example #2 :




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


Output :

False


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads