您的位置:

Python 列表中的所有元素相乘

在本教程中,我们将学习如何在 Python 中乘法列表的所有元素。

让我们看一些例子来理解我们的目标-


Input - [2, 3, 4]
Output - 24

我们可以观察到,在输出中,我们获得了列表中所有元素的乘积。


Input - [3, 'a']
Output - aaa

因为第一个元素是三,所以在输出中会打印三次。

我们将学习以下方法-

  1. 遍历列表
  2. 使用 NumPy
  3. 使用λ

让我们从第一个开始,

遍历列表

考虑下面给出的程序-


#creating a function
def multiply_ele(list_value1):
    #multiply the elements
    prod=1
    for i in list_value1:
        prod = prod*i
    return prod
#initializing the list
list_value1 = [10, 11, 12, 13, 14]
list_value2 = [2, 3, 4, 5, 6, 7]
#displaying the resultant values 
print("The multiplication of all the elements of list_value1 is: ", multiply_ele(list_value1))
print("The multiplication of all the elements of list_value2 is: ", multiply_ele(list_value2))

输出:

The multiplication of all the elements of list_value1 is: 240240
The multiplication of all the elements of list_value2 is: 5040

解释-

是时候看看上面程序的解释了-

  1. 在第一步中,我们创建了一个函数,它将列表作为输入。
  2. 在函数定义中,我们使用了一个 for循环,该循环从列表中取出每个元素,最初将其乘以 1,然后输出乘积的结果值。
  3. 在下一步中,我们已经初始化了列表,然后将它们传递给我们的函数。
  4. 执行该程序时,会显示所需的输出。

在第二个程序中,我们将看到 NumPy 如何帮助我们实现同样的功能。

使用 NumPy

下面的程序说明了如何用 Python 来实现。


#importing the NumPy module
import numpy
#initializing the list
list_value1 = [10, 11, 12, 13, 14]
list_value2 = [2, 3, 4, 5, 6, 7]
#using numpy.prod()
res_list1 = numpy.prod(list_value1)
res_list2 = numpy.prod(list_value2)
#displaying the resultant values 
print("The multiplication of all the elements of list_value1 is: ", res_list1)
print("The multiplication of all the elements of list_value2 is: ", res_list2)

输出:

The multiplication of all the elements of list_value1 is: 240240
The multiplication of all the elements of list_value2 is: 5040

解释-

让我们了解一下我们在上面的程序中做了什么。

  1. 第一步,我们已经导入了 NumPy 模块。
  2. 在下一步中,我们已经初始化了两个列表的值,list_value1 和 list_value2。
  3. 之后,我们将使用 prod() 计算列表中元素的乘积。
  4. 在执行程序时,会显示预期的输出。

最后,我们将学习如何使用 lambda 来相乘我们列表中的元素。

使用λ

下面给出的程序展示了相同的-


#importing the module
from functools import reduce
#initializing the list
list_value1 = [10, 11, 12, 13, 14]
list_value2 = [2, 3, 4, 5, 6, 7]
#using numpy.prod()
res_list1 = reduce((lambda a, b:a*b), list_value1)
res_list2 = reduce((lambda a, b:a*b), list_value2)
#displaying the resultant values 
print("The multiplication of all the elements of list_value1 is: ", res_list1)
print("The multiplication of all the elements of list_value2 is: ", res_list2)

输出:

The multiplication of all the elements of list_value1 is: 240240
The multiplication of all the elements of list_value2 is: 5040

解释-

让我们了解一下在上面的程序中发生了什么。

  1. 第一步,我们从
  2. 之后,我们初始化了两个列表, list_value1 和 list_value2 。
  3. 我们使用了定义函数的精确方式,即 lambda,然后提供了所需的功能。
  4. 在执行程序时,会显示所需的值。

结论

在本教程中,我们学习了用 Python 将列表中的元素相乘的各种方法。