how to print one decimal place in python code example
Example 1: python format only 1 decimal place
>>> "{0:0.1f}".format(45.34531)
'45.3'
Example 2: how to print answer 2 decimal places in python 3
print("{0:.2f}".format(sum(student_marks[query_name])/3))