math

math.sqrt()

>>> math.sqrt(16)
4.0

math.ceil()

Return the ceiling of x as a float, the smallest integer value greater than or equal to x.

>>> math.ceil(1.1)
2
>>> math.ceil(2)
2