math
- ceil(x: int, decimals: int) int
Return the ceiling of x given the amount of decimals. This is the smallest integer >= x.
>>> ceil(12345, 3) 13000
Return the ceiling of x given the amount of decimals. This is the smallest integer >= x.
>>> ceil(12345, 3)
13000