I think i have the function for mean but i also need to figure out below mean. This what i have so far.
import math
def mean(alist):
belowMean = alist
mean = sum(alist) / len(alist)
if mean <= alist:
belowMean = item
return belowMean