how to print a number to 2 decimal places in python code example
Example 1: 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
Example 2: how to print answer 2 decimal places in python 3
print("{0:.2f}".format(sum(student_marks[query_name])/3))