def Moyenne(Notes): N=len(Notes) S=0 for i in range(N): S=S+Notes[i] ... return ...