2.向下取整 math.floor 同math.ceil类似,方向相反,向下取整。 import math math.floor(-0.5) # -1 math.floor(1.6) # 1 1. 2. 3. 3.四舍五入 round round()方法返回浮点数的四舍五入值。 使用语法: round(x, [, n]) x -- 浮点数 n -- 小数点位数 1. 2. 3. 实操: round(1.5) # 2 ...