How do you round UP a number?

The ceil (ceiling) function:

import math
print(int(math.ceil(4.2)))

Leave a Comment