You are viewing a single comment's thread. Return to all comments →
count,Student=int(input()),namedtuple('Student',input().split()) total_marks=0 for _ in range(count): st=Student(*input().split()) total_marks+=int(st.MARKS) print(total_marks/count)
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 →