You are viewing a single comment's thread. Return to all comments →
from numpy import mean, std, var res = [ list(map(int, input().split(' '))) for _ in range(int(input().split(' ')[0])) ] print( mean(res, axis=1), var(res, axis=0), std(res).round(11), sep='\n' )
Seems like cookies are disabled on this browser, please enable them to open this website
Mean, Var, and Std
You are viewing a single comment's thread. Return to all comments →