rounding to 2 digits in python code example
Example 1: round decimal to 2 places python
>>> round(1.4756,2)
1.48
>>> round(1.3333,2)
1.33
Example 2: rounding numbers in python
>>> round(2.5)
2
>>> round(1.4756,2)
1.48
>>> round(1.3333,2)
1.33
>>> round(2.5)
2