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