python round float up code example

Example 1: round to two decimal places python

>>> x = 13.949999999999999999
>>> x
13.95
>>> g = float("{0:.2f}".format(x))
>>> g
13.95
>>> x == g
True
>>> h = round(x, 2)
>>> h
13.95
>>> x == h
True

Example 2: how to round a float in python

round(number, ndigits)

Example 3: how to round a number up in python

>>> import math

>>> math.ceil(3.2) # round up
4

Example 4: round list of floats python

myList = [round(x) for x in myList]

myList # [25, 193, 282, 88, 80, 450, 306, 282, 88, 676, 986, 306, 282]