用python编写程序,使用列表推导将列表中的所有项目相乘

时间:2019-06-02 03:15:06

标签: python

我不知道如何编写代码。
我将用户的值放在一个列表中,如下所示:

n= int( input ("Enter the size of the list")) 
l=[ ]
for i in range(n) :
     x= int( input( "Enter the elements:")) 
      l. append(x) 
print(l) 
m=1            

出于乘法的目的,我将乘法的值存储在变量m中

在这里,我需要编写列表理解的那一行来执行列表中所有项目的相乘

0 个答案:

没有答案