Open In App

Python | sympy.Integer() method

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

Article Tags :