summaryrefslogtreecommitdiff
path: root/progs/a229.py
blob: 202324eca91f7b3a0598089dfb808162006c6143 (plain)
1
2
3
4
import math
def round_up(a, digits):
    n = 10**-digits
    return round(math.ceil(a / n) * n, digits)