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

 

posted @ 2024-02-27 10:38  txwtech  阅读(26)  评论(0编辑  收藏  举报