I'm doing a python 3 tutorial and i'm trying to figure out where in my output these parentheses are coming from.
students = int (input())
total = dict()
for i in range(0,students):
tokens = input().split()
name = tokens[0]
total[name] = float(tokens[1]) + float(tokens[2]) + float(tokens[3])
student = input(())
print ("{0:.2f}".format(total[student] / 3))
Expected Output
56.00
My Output
()56.00