以下是 floor() 函数的语法:
import math
math.floor(x)
参数 x 是一个数字(整数或浮点数),表示需要向下取整的值。
下面是一些示例:
import math
# 向下取整
result = math.floor(4.23)
print(result) # 输出 4
result = math.floor(9.99)
print(result) # 输出 9
result = math.floor(-5.6)
print(result) # 输出 -6
在这些示例中,math.floor() 函数将小数部分向下舍入到最接近的整数。值得注意的是,math.floor() 返回的结果始终是一个整数。
转载请注明出处:http://www.zyzy.cn/article/detail/285/Python3