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