floor()和ceil()函数在Python中的使用

floor()和ceil()函数在Python中的使用

在本教程中,我们将学习如何在Python中使用math模块的floor()和ceil()函数。

floor()函数:

floor()函数用于获取“X”的floor整数,意思是不大于“X”的最大整数值,基本上是其最近的向下舍入的数。

语法:

math.floor(X)

参数:

我们可以传递数值表达式。

返回值:

它返回不大于”X”的最大整数值。

让我们看一个示例来了解如何在Python中实现floor()函数。

示例:

import math as M  

# printing the floor value by using floor() function of math module
print ("The floor value of math.floor(-54.21) is: ", M.floor(-54.21))
print ("The floor value of math.floor(432.56) is: ", M.floor(432.56))
print ("The floor value of math.floor(320.62) is: ", M.floor(320.62)) 

输出:

The floor value of math.floor(-54.21) is:  -55
The floor value of math.floor(432.56) is:  432
The floor value of math.floor(320.62) is:  320

ceil()函数:

Python的math模块中的ceil()函数用于返回“X”的上取整值,即不小于“X”的最小整数值,基本上是它的最近的舍入数。

语法:

math.ceil(X)

参数:

我们可以传递数值表达式。

返回值:

它返回不小于“X”的最小整数值。

让我们看一个示例来了解如何在Python中实现ceil()函数。

示例:

import math as M  

# printing the ceiling value by using ceil() function of math module
print ("The ceiling value of math.ceil(-54.21) is: ", M.ceil(-54.21))
print ("The ceiling value of math.ceil(432.56) is: ", M.ceil(432.56))
print ("The ceiling value of math.ceil(320.62) is: ", M.ceil(320.62))

输出:

The ceiling value of math.ceil(-54.21) is:  -54
The ceiling value of math.ceil(432.56) is:  433
The ceiling value of math.ceil(320.62) is:  321

结论

在本教程中,我们讨论了如何在Python中实现math模块的floor()和ceil()函数。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程