1 2 3 4
import math def round_up(a, digits): n = 10**-digits return round(math.ceil(a / n) * n, digits)