print float 2 decimal places python code example
Example 1: how to print a float with only 2 digits after decimal in python
tax = 34.4563
tax = round(tax, 2)
Example 2: printing with format float to 2 decimal places python
formatted_float = "{:.2f}".format(a_float)
Example 3: how print 2 decimal in python
for i in range(10):
j=i*0.1
print('%0.2f' %j)
Example 4: python print 2 decimal places
print("%.2f" % (70/105))
Example 5: round decimal to 2 places python
>>> round(1.4756,2)
1.48
>>> round(1.3333,2)
1.33
Example 6: python print with 2 decimals
value_to_print = 123.456
print(f'value is {round(value_to_print, 2)}')