Open In App

Python | sympy.Integer() method

Last Updated : 14 Jul, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

With the help of sympy.Integer() method, we can convert the floating point to integer values and this method very efficient in term of memory if we want to save integer value.

Syntax : sympy.Integer()
Return : Return integer value.

Example #1 :
In this example we can see that by using sympy.Integer() method, we are able to convert the floating values to integer or optimize memory consumption.




# import sympy
from sympy import *
  
# Use sympy.Integer() method
gfg = Integer(50) + Integer(50)
    
print(gfg)


Output :

100

Example #2 :




# import sympy
from sympy import *
  
# Use sympy.Integer() method
gfg = Integer(12.36) + Integer(8.98)
    
print(gfg)


Output :

20


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

Similar Reads