csc-python-solutions/13/6 - for in.py

5 lines
63 B
Python
Raw Normal View History

2021-02-18 07:53:12 +00:00
def prod(L):
for i in L[1:]:
L[0] *= i
return L[0]