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