write a function in python that accepts 3 numbers and returns their multiplication
Answers
Answered by
1
Answer:
Explanation:
Input : list1 = [1, 2, 3]
Output : 6
Explanation: 1*2*3=6
Input : list1 = [3, 2, 4]
Output : 24
Similar questions