📜  四舍五入python代码示例

📅  最后修改于: 2022-03-11 14:45:21.452000             🧑  作者: Mango

代码示例6
>>> import math

>>> math.ceil(5.2)
6

>>> math.floor(5.2)
5