We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
N , X = map(int , input().split())
subjects = []
for i in range(X):
subjects.append(list(map(float , input().split())))
result = list(zip(*subjects))
for j in result:
final_result = sum(j)/len(j)
print("{:.1f}".format(final_result))
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Here's my code
if name == 'main':