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