#basics-pf-python
Read more stories on Hashnode
Articles with this tag
Write a Python program to find the product of all elements in an array : l=[2,2,2,2,2] mul=1 for i in l: mul=mul*i print(mul) Output : 32 The...