from math import * def EcartType(L): n=len(L) m=moyenne(L) ET=[] for i in range(n): ET.append((L[i]-m)**2) v=moyenne(ET) s=sqrt(v) return s