python math模块使用方法介绍

python math模块使用方法介绍math常用方法
1.math.ceil()向上取整
import math
print(math.ceil(56.1))
57
2.math.floor()向下取整
import