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

我有以下两份名单:

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

现在我要将这两个列表中的项添加到一个新列表中。

输出应该是

third = [7,9,11,13,15]
334858 次浏览

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]

您可以使用 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]

这扩展到任意数量的名单:

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

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

来自 医生

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

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

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

最简单快捷的方法是:

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

或者,您可以使用 numpy sum:

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

我的回答和瑟鲁的一样,在3月17日9点25分回答了这个问题。

这种方法更简单、更快捷,以下是他的解决方案:

最简单快捷的方法是:

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

或者,您可以使用 numpy sum:

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

你需要麻木!

Numpy 数组可以做一些像向量这样的操作

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]

numpy.add(numpy.subtract等)中的默认行为是元素方面的:

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

输出

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

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

Python 2. x 和3. x:

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

尝试以下代码:

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]

如果您还想添加列表中的其他值,可以使用这个(在 Python 3.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 = list(map(sum, 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("")
j = min(len(l1), len(l2))
l3 = [l1[i]+l2[i] for i in range(j)]

也许最简单的方法是:

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


for i in range(0,5):
three.append(first[i]+second[i])


print(three)

如果你认为你的列表是一个数字数组,那么你需要轻松地对它们求和:

import numpy as np


third = np.array(first) + np.array(second)


print third


[7, 9, 11, 13, 15]

如果有未知数量的相同长度的列表,可以使用下面的函数。

这里的 * args 接受数量可变的列表参数(但是只对每个参数中相同数量的元素求和)。 * 再次用于解压缩每个列表中的元素。

def sum_lists(*args):
return list(map(sum, zip(*args)))


a = [1,2,3]
b = [1,2,3]


sum_lists(a,b)

产出:

[2, 4, 6]

或者三张名单

sum_lists([5,5,5,5,5], [10,10,10,10,10], [4,4,4,4,4])

产出:

[19, 19, 19, 19, 19]

单行程序解决方案

list(map(lambda x,y: x+y, a,b))

如果你有不同长度的列表, 然后你可以尝试这样的东西(使用 zip_longest)

from itertools import zip_longest  # izip_longest for python2.x


l1 = [1, 2, 3]
l2 = [4, 5, 6, 7]


>>> list(map(sum, zip_longest(l1, l2, fillvalue=0)))
[5, 7, 9, 7]
first = [1,2,3,4,5]
second = [6,7,8,9,10]
third=[]
for i,j in zip(first,second):
t=i+j
third.append(t)
print("Third List=",third)


output -- Third List= [7, 9, 11, 13, 15]