1 2 3 4 5
# math.ceil returns int (not float) and rounds toward positive infinity. import math print(math.ceil(2.1)) print(math.ceil(-2.1))