>>> round(1.5) 2 >>> round(1.4) 1
>>> int(1.9) 1 >>> import math >>> math.floor(1.9) 1
>>> math.ceil(1.3) 2