6 lines
84 B
Python
6 lines
84 B
Python
def somme(tab):
|
|
s = 0
|
|
for i in range(len(tab)):
|
|
......
|
|
return s
|