python math.floor()
math.floor
math函数库中的一个函数,math.floor(x)返回小于参数x的最大整数,即对浮点数向下取整。x[ ]的取值。
math例子
print("floorTest 8 : ".. math.floor(8)) 结果: 8.0
print("floorTest 8.5: ".. math.floor(8.5))结果: 8.0
print("floorTest -8: ".. math.floor(-8))结果: -8.0
print("floorTest -8.5: ".. math.floor(-8.5))结果: -9.0
欢迎讨论,相互学习。
cdtxw@foxmail.com