在python中,如何对列表的子列表中相同位置的数值相乘,形成一个新的列表...
发布网友
发布时间:2022-04-26 05:35
我来回答
共1个回答
热心网友
时间:2022-04-18 06:08
from functools import rece
list_1 = [ [1,2,3],[4,5,6],[7,8,9] ]
list_2 = [rece(lambda x, y: x*y, t) for t in zip(*list_1)]
print(list_2)
要求每个子列表有至少两个元素