5 lines
No EOL
78 B
Python
5 lines
No EOL
78 B
Python
def somme(L):
|
|
s = L[0]
|
|
for i in range(len(L)):
|
|
s = s + L[i]
|
|
return s |