Collections.namedtuple()

  • + 0 comments

    from collections import namedtuple N = int(input()) Student = namedtuple('Student', input().split()) students = [ Student(*(input().split()) ) for row in range(N) ] print( sum([ int(s.MARKS) for s in students ]) / len(students) )