You are viewing a single comment's thread. Return to all comments →
students, subject = map(int, input().split()) X=[] for _ in range(subject): X.append(list(map(float, input().split()))) scores = zip(*X) for i in scores: print(sum(i)/subject)
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 →