我需要将未知数量的列表的每个索引一起添加到一个列表中。
我的意思的一个例子:
list_a = [1,2,3,4,5]
list_b = [2,4,6,8,10]
list_c = [3,6,9,12,15]
def sum_lists():
temp_list = []
for index in range(len(list_a)):
temp_list.append(list_a[index] + list_b[index] + list_c[index])
return temp_list
total = sum_lists()
我的示例代码的预期输出是:
total = [6,12,18,24,30]
如何完成未知数量的列表的总和,例如20个列表?我不需要在数千个列表中添加这些内容,但我不知道最初需要添加多少列表。
非常感谢任何帮助。所有列表的长度都相同。