You are viewing a single comment's thread. Return to all comments →
def stdDev(arr): N=len(arr) mean=sum(arr)/N s=0 for i in arr: s+=(mean-i)**2 print(round((s/N)**0.5,1))
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 →