数字 1- 取整2 - 向上取整:`math.ceil(number)`3 - 向下取整:`math.floor()`、整除`//`4 - 向零取整:`int(number)`(负数结果不同)5 - 四舍五入:`round(number)`