Collections.namedtuple()

  • + 0 comments

    from collections import namedtuple

    num, Student = int(input()), namedtuple("Student", input() ) print(f"{sum([int(Student(*input().split()).MARKS) for _ in range(num)])/num:.2f}") 1 line of code is enough