You are viewing a single comment's thread. Return to all comments →
from statistics import mean,median,mode N = input() X = sorted(list(map(int,input().split(" ")))) print(mean(X)) print(median(X)) print(mode(X))
Seems like cookies are disabled on this browser, please enable them to open this website
Day 0: Mean, Median, and Mode
You are viewing a single comment's thread. Return to all comments →