将两个LISTS的值的SUM加到新的LIST中

我有以下两个列表:

first = [1,2,3,4,5] second = [6,7,8,9,10] 

现在我想添加两个列表的项目到一个新的列表。

输出应该是

 three = [7,9,11,13,15] 

zip函数在这里很有用,用于列表理解。

 [x + y for x, y in zip(first, second)] 

如果你有一个列表(而不是两个列表):

 lists_of_lists = [[1, 2, 3], [4, 5, 6]] [sum(x) for x in zip(*lists_of_lists)] # -> [5, 7, 9] 

从文档

 import operator map(operator.add, first,second) 

假设两个列表ab具有相同的长度,则不需要zip,numpy或其他任何东西。

 [a[i]+b[i] for i in xrange(len(a))] 

这扩展到任何数量的列表:

 [sum(sublist) for sublist in itertools.izip(*myListOfLists)] 

在你的情况下, myListOfLists[first, second]

numpy中的默认行为是分组添加

 import numpy as np np.add(first, second) 

哪个输出

 array([7,9,11,13,15]) 

简单的方法和快速的方法是:

 three = [sum(i) for i in zip(first,second)] # [7,9,11,13,15] 

或者,您可以使用numpy和:

 from numpy import sum three = sum([first,second], axis=0) # array([7,9,11,13,15]) 

试试下面的代码:

 first = [1, 2, 3, 4] second = [2, 3, 4, 5] third = map(sum, zip(first, second)) 

这是另一种方式来做到这一点。 我们利用python的内部__add__函数:

 class SumList(object): def __init__(self, this_list): self.mylist = this_list def __add__(self, other): new_list = [] zipped_list = zip(self.mylist, other.mylist) for item in zipped_list: new_list.append(item[0] + item[1]) return SumList(new_list) def __repr__(self): return str(self.mylist) list1 = SumList([1,2,3,4,5]) list2 = SumList([10,20,30,40,50]) sum_list1_list2 = list1 + list2 print(sum_list1_list2) 

产量

 [11, 22, 33, 44, 55] 

你可以使用zip() ,它将两个数组“交错”在一起,然后使用map() ,它将一个函数应用到迭代器中的每个元素:

 >>> a = [1,2,3,4,5] >>> b = [6,7,8,9,10] >>> zip(a, b) [(1, 6), (2, 7), (3, 8), (4, 9), (5, 10)] >>> map(lambda x: x[0] + x[1], zip(a, b)) [7, 9, 11, 13, 15] 

我的答案是在三月十七日9:25回答Thiru的问题。

这是更简单,更快,这是他的解决scheme:

简单的方法和快速的方法是:

  three = [sum(i) for i in zip(first,second)] # [7,9,11,13,15] 

或者,您可以使用numpy和:

  from numpy import sum three = sum([first,second], axis=0) # array([7,9,11,13,15]) 

你需要numpy!

numpy数组可以做一些像vector一样的操作

 import numpy as np a = [1,2,3,4,5] b = [6,7,8,9,10] c = list(np.array(a) + np.array(b)) print c # [7, 9, 11, 13, 15] 

如果你想添加列表中的其余值,你可以使用这个(这是在Python3.5工作)

 def addVectors(v1, v2): sum = [x + y for x, y in zip(v1, v2)] if not len(v1) >= len(v2): sum += v2[len(v1):] else: sum += v1[len(v2):] return sum #for testing if __name__=='__main__': a = [1, 2] b = [1, 2, 3, 4] print(a) print(b) print(addVectors(a,b)) 
  first = [1,2,3,4,5] second = [6,7,8,9,10] #one way third = [x + y for x, y in zip(first, second)] print("third" , third) #otherway fourth = [] for i,j in zip(first,second): global fourth fourth.append(i + j) print("fourth" , fourth ) #third [7, 9, 11, 13, 15] #fourth [7, 9, 11, 13, 15] 
 first = [1, 2, 3, 4, 5] second = [6, 7, 8, 9, 10] three = map(lambda x,y: x+y,first,second) print three Output [7, 9, 11, 13, 15] 

这是另一种方式去做,它对我来说工作得很好。

 N=int(input()) num1 = list(map(int, input().split())) num2 = list(map(int, input().split())) sum=[] for i in range(0,N): sum.append(num1[i]+num2[i]) for element in sum: print(element, end=" ") print("") 

你可以使用这个方法,但是只有在两个列表的大小相同的情况下才能使用。

 first = [1, 2, 3, 4, 5] second = [6, 7, 8, 9, 10] third = [] a = len(first) b = int(0) while True: x = first[b] y = second[b] ans = x + y third.append(ans) b = b + 1 if b == a: break print third