You are viewing a single comment's thread. Return to all comments →
N,X = map(int, input().split()) marks = list() for i in range(X): marks.append(map(float, input().split())) for student_marks in list(zip(*(marks))): print(sum(student_marks)/X)
Seems like cookies are disabled on this browser, please enable them to open this website
Zipped!
You are viewing a single comment's thread. Return to all comments →