Python | sympy.Integer() method
Last Updated :
14 Jul, 2019
Improve
With the help of
Python3 1=1
Output :
Python3 1=1
Output :
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)
100Example #2 :
# import sympy
from sympy import *
# Use sympy.Integer() method
gfg = Integer(12.36) + Integer(8.98)
print(gfg)
20