You are viewing a single comment's thread. Return to all comments →
N =int(input()) Estudiante=collections.namedtuple("Estudiante", input().split()) suma=0 for _ in range(N): s = Estudiante (*input().split()) suma = suma + int(s.MARKS) print (suma/N)
Seems like cookies are disabled on this browser, please enable them to open this website
Collections.namedtuple()
You are viewing a single comment's thread. Return to all comments →