Python math.floor() 方法
实例
四舍五入到最接近的整数:
# 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))
亲自试一试 »
定义和用法
math.floor()
方法将数字向下舍入到最接近的整数,如有必要,并返回结果。
提示:要将数字向上舍入到最接近的整数,请查看 math.ceil()
方法。
语法
math.floor(x)
参数值
参数 | 描述 |
---|---|
x | 必需。指定要向下舍入的数字 |
技术细节
返回值: | 一个 int 值,表示四舍五入的数字 |
---|---|
更改日志: | Python 3+:返回 int 值Python 2.x:返回 float 值 |