sympy.Integer()方法

sympy.Integer()方法

sympy.Integer()方法的帮助下,我们可以将浮点数转换为整数值,如果我们想保存整数值,这种方法在内存方面非常有效。

语法:sympy.Integer()

Return:返回整数值。

sympy.Integer()方法 例# 1:

在本例中,我们可以看到,通过使用sympy.Integer()方法,我们能够将浮点值转换为整数或优化内存消耗。

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

Output :

100

sympy.Integer()方法 例# 2:

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

Output :

20

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程