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

时间:2012-12-27 07:09:52

标签: python list sum

我有以下两个清单:

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

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

输出应该是

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

21 个答案:

答案 0 :(得分:166)

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]

答案 1 :(得分:46)

来自docs

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

答案 2 :(得分:25)

假设列表ab的长度相同,则不需要zip,numpy或其他任何内容。

Python 2.x和3.x:

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

答案 3 :(得分:19)

numpy中的默认行为是按分数添加

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

输出

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

答案 4 :(得分:11)

这可以扩展到任意数量的列表:

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

在您的情况下,myListOfLists将为[first, second]

答案 5 :(得分:8)

请尝试以下代码:

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

答案 6 :(得分:5)

这样做的简单方法和快捷方式是:

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])

答案 7 :(得分:5)

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]

答案 8 :(得分:1)

这是另一种方法。我们使用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]

答案 9 :(得分:1)

也许是最简单的方法:

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)

答案 10 :(得分:0)

如果列表长度不同,该怎么办? 那么您可以尝试这样的操作(使用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]

答案 11 :(得分:0)

单线解决方案

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

答案 12 :(得分:0)

如果未知数量的相同长度的列表,则可以使用以下功能。

这里* 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]

或带有3个列表

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

输出:

[19, 19, 19, 19, 19]

答案 13 :(得分:0)

如果您将列表视为numpy数组,则需要轻松对其求和:

import numpy as np

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

print third

[7, 9, 11, 13, 15]

答案 14 :(得分:0)

j = min(len(l1), len(l2))
l3 = [l1[i]+l2[i] for i in range(j)]

答案 15 :(得分:0)

这是另一种方法。它对我来说很好。

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("")

答案 16 :(得分:0)

    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]

答案 17 :(得分:0)

如果你想在列表中添加其余值,你也可以使用它(这在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))

答案 18 :(得分:0)

Thiru的回答在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!

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]

答案 19 :(得分:0)

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

答案 20 :(得分:-3)

您可以使用此方法,但仅当列表大小相同时才会起作用:

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