how to round up a number in python without function code example
Example 1: how to round a number up in python
>>> import math
>>> math.ceil(3.2) # round up
4
Example 2: python round without math
(int(10*x-0.5)+1) / 10.0
>>> import math
>>> math.ceil(3.2) # round up
4
(int(10*x-0.5)+1) / 10.0