以下是 math.floor() 方法的基本语法:
math.floor(x)
- x: 一个数字。
返回值是小于或等于 x 的最大整数,以浮点数形式返回。
以下是一些示例:
import math
# 向下取整
result1 = math.floor(5.3)
print(result1) # 输出 5
result2 = math.floor(2.8)
print(result2) # 输出 2
result3 = math.floor(-4.7)
print(result3) # 输出 -5
在这个例子中,math.floor() 函数分别将 5.3 向下取整为 5,将 2.8 向下取整为 2,将 -4.7 向下取整为 -5。这个函数常用于需要对数字进行取整操作的场景。
转载请注明出处:http://www.zyzy.cn/article/detail/355/Python3