This website requires JavaScript.
Explore
Help
Sign In
ada
/
csc-python-solutions
Watch
1
Star
0
Fork
0
You've already forked csc-python-solutions
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
1f25e5f7a4
csc-python-solutions
/
13
/
5 - Product
5 lines
76 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Create 5 - Product
2021-02-18 07:49:56 +00:00
def prod(L):
Update 5 - Product
2021-02-18 07:51:58 +00:00
for i in range(1,len(L)):
L[0] *= L[i]
Create 5 - Product
2021-02-18 07:49:56 +00:00
return L[0]
Reference in New Issue
Copy Permalink