You are viewing a single comment's thread. Return to all comments →
def stdDev(arr): m=sum(arr)/len(arr) l=[(arr[i]-m)**2 for i in range(len(arr))] print(round((sum(l)/len(arr))**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 →