6 lines
76 B
Python
6 lines
76 B
Python
|
def produit (L):
|
||
|
p = ...
|
||
|
for elt in L:
|
||
|
.......
|
||
|
return p
|