Python sympy.Integer()方法
在sympy.Integer()方法的帮助下,我们可以将浮点值转换成整数值,如果我们想保存整数值,这个方法在内存方面非常有效。
语法 : sympy.Integer()
返回:返回整数值。
例子#1 :
在这个例子中,我们可以看到,通过使用sympy.Integer()方法,我们能够将浮动值转换为整数或优化内存消耗。
# import sympy
from sympy import *
# Use sympy.Integer() method
gfg = Integer(50) + Integer(50)
print(gfg)
输出 :
100
例子#2 :
# import sympy
from sympy import *
# Use sympy.Integer() method
gfg = Integer(12.36) + Integer(8.98)
print(gfg)
输出 :
20