标签: 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'