5 lines
No EOL
73 B
Python
5 lines
No EOL
73 B
Python
def somme(tab):
|
|
s = 0
|
|
for i in range(len(tab)):
|
|
......
|
|
return s |