def somme(L): s = L[0] for i in range(len(L)): s = s + L[i] return s