Python math.floor() 方法
例如:
舍五入到最接近的整数
# Import math libraryimport 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、方法说明
返回值: |
|
Change Log: | Python 3+:返回 |