how to round up a number to nearest whole number in python code example
Example 1: python round down
>>> int(1.6)
1
>>> int(2)
2
>>> int(3.9)
3
Example 2: rounding numbers in python
>>> round(2.5)
2
>>> int(1.6)
1
>>> int(2)
2
>>> int(3.9)
3
>>> round(2.5)
2