how to print 2 places after the decimal in python 3 code example
Example 1: printing with format float to 2 decimal places python
formatted_float = "{:.2f}".format(a_float)
Example 2: print 2 decimal places python
print("{0:.2f}".format(sum(query_marks)/len(query_marks)))