math.floor(x) 方法将 x 向下舍入到最接近的整数。
另有math.ceil() 方法。可以将数字向上舍入到最接近的整数。
math.floor() 方法语法如下:
math.floor(x)
参数说明:
返回一个整数 int,表示向下舍入的数字。
以下实例返回向下舍入到最接近的整数:
# 导入 math 包
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))
输出结果:
0
1
5
-6
22
10
备案信息: 粤ICP备15087711号-2
Copyright © 2008-2024 啊嘎哇在线工具箱 All Rights.
本站所有资料来源于网络,版权归原作者所有,仅作学习交流使用,如不慎侵犯了您的权利,请联系我们。