You are viewing a single comment's thread. Return to all comments →
**python **
def stdDev(arr): m=statistics.mean(arr) l=[] for i in arr: l.append((i-m)**2) print((statistics.mean(l))**0.5)
Seems like cookies are disabled on this browser, please enable them to open this website
Day 1: Standard Deviation
You are viewing a single comment's thread. Return to all comments →
**python **