Python math模块中定义了一些数学函数。由于这个模块属于编译系统自带,因此它可以被无条件调用。该模块还提供了与用标准C定义的数学函数的接口。本文主要介绍Python math.floor() 方法的使用,以及相关示例代码。

Python math.floor() 方法

Python Math方法

例如:

舍五入到最接近的整数

# Import math library
import math

# 四舍五入到最接近的整数
print(math.floor(0.6))
print(math.floor(1.4))
print(math.floor(5.3))
print(math.floor(-5.3))
print(math.floor(22.6))
print(math.floor(10.0))

1、定义和用法

math.floor()方法根据需要将数字DOWN舍入到最接近的整数,然后返回结果。

提示:要将数字四舍五入到最接近的整数,请查看math.ceil()方法。

2、调用语法

math.floor(x)

3、参数说明

参数

描述

x

必需的参数, 指定要四舍五入的数字

4、方法说明

返回值:

int值,表示四舍五入的数字

Change Log:

Python 3+:返回int
Python 2.x:返回float

Python Math方法

推荐文档