round float to two decimals 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: python print with 2 decimals
# round a value to 2 decimal points
value_to_print = 123.456
print(f'value is {round(value_to_print, 2)}')
# prints: value is 123.46