csc-python-solutions/13/7 - Mystery Function

5 lines
63 B
Plaintext
Raw Normal View History

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