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