get round number python 2.5 3 code example
Example 1: how to round a number down in python
>>> import math
>>> math.floor(3.9) # round down
3
Example 2: how to round a number up in python
>>> import math
>>> math.ceil(3.2) # round up
4
>>> import math
>>> math.floor(3.9) # round down
3
>>> import math
>>> math.ceil(3.2) # round up
4