write a python program to find out all the multiples of all numbers in a list with using function?
Answers
Answered by
1
Answer: here it is ;
Explanation: Given a list, print the value obtained after multiplying all numbers in a list.
Examples:
Input : list1 = [1, 2, 3]
Output : 6
Explanation: 1*2*3=6
Input : list1 = [3, 2, 4]
Output : 24
rohit3619:
Using function
Similar questions