python limit to two decimals code example
Example 1: how do i limit decimals to only two decimals in python
answer = str(round(answer, 2))
Example 2: round decimal to 2 places python
>>> round(1.4756,2)
1.48
>>> round(1.3333,2)
1.33
Example 3: 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