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