>>> import math

>>> math.floor(32.9)

32

>>> math.ceil(32.3)

33

>>> math.ceil(32)

32

>>> 

>>> from math import sqrt

>>> sqrt(9)

3.0

>>>