如何在 Python 中将一个数字向上取整?
我试过round(number)了,但它把数字四舍五入。例子:
round(number)
round(2.3) = 2.0
而不是 3,如我所愿。
我试过int(number + .5)了,但它又把数字四舍五入了!例子:
int(number + .5)
int(2.3 + .5) = 2
ceil(天花板)功能:
import math print(int(math.ceil(4.2)))