返回不小于 x 的下一个整数。
math.ceil(x)复制
math.ceil(x)
def test(): ret=math.ceil(3.456) print(ret)复制
def test():
ret=math.ceil(3.456)
print(ret)