Product of Elements in the List:
You are given a space-separated list of integers as input. Write a program to print the product of these numbers.
def func(list1): j = 1 for i in list1: j = i * j return j func([3,4,5]) 60
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment