Python: Product of a given list of numbers using lambda
42. Product of List Lambda
Write a Python program to calculate the product of a given list of numbers using lambda.
Sample Solution:
Python Code :
Sample Output:
list1: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] Product of the said list numbers: 3628800 list2: [2.2, 4.12, 6.6, 8.1, 8.3] Product of the said list numbers: 4021.8599520000007
For more Practice: Solve these Related Problems:
- Write a Python program to calculate the cumulative product of elements in a list using lambda.
- Write a Python program to compute the product of only the even numbers in a list using lambda.
- Write a Python program to compute the product of numbers in a list after filtering out zeros using lambda.
- Write a Python program to calculate the product of a list of numbers and then compute the product of its digits using lambda.
Go to:
Previous: Write a Python program to reverse strings in a given list of string values using lambda.
Next: Write a Python program to multiply all the numbers in a given list using lambda.
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.