redondeando un número en lo alto

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