Python - 如何在列表中获取列表的产品?

时间:2017-04-22 07:01:07

标签: python

我试图将所有数字乘以列表中的列表

例如:

l1 = [[1,2],[1,3],[2,3]]

到我想要的输出:

[2,3,6]

我尝试过使用

l2 = functools.reduce(lambda x , y: x * y , l1)

但我得到的是这个错误

TypeError: can't multiply sequence by non-int of type 'list'
谁能帮助我吗?我只是一个新秀

0 个答案:

没有答案