csc-python-solutions/13/6 - for in.py
2021-02-18 08:53:12 +01:00

5 lines
63 B
Python

def prod(L):
for i in L[1:]:
L[0] *= i
return L[0]