You are viewing a single comment's thread. Return to all comments →
N, X = map(int, input().split()) marks_list = [] for _ in range(X): marks_list += [list(map(float, input().split()))] for marks in zip(*marks_list): print(f"{sum(marks)/X:.1f}")
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 →
For Python3 Platform