math

 

2022-03-29

数字

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