Python sympy.Integer()方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程