w3resource

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 :

# Import the functools module for higher-order functions and operations on iterable objects
import functools 

# Define a function 'remove_duplicates' that computes the product of elements in a list
def remove_duplicates(nums):
    # Use 'functools.reduce' to compute the product of elements in 'nums' starting from 1
    result = functools.reduce(lambda x, y: x * y, nums, 1)
    
    # Return the product of elements in the list
    return result

# Create two lists: 'nums1' containing integers and 'nums2' containing floating-point numbers
nums1 = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
nums2 = [2.2, 4.12, 6.6, 8.1, 8.3]

# Print the list 'nums1' and compute the product of its numbers using 'remove_duplicates' function
print("list1:", nums1)
print("Product of the said list numbers:")
print(remove_duplicates(nums1))

# Print the list 'nums2' and compute the product of its numbers using 'remove_duplicates' function
print("\nlist2:", nums2)
print("Product of the said list numbers:")
print(remove_duplicates(nums2)) 

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.



Follow us on Facebook and Twitter for latest update.