Respuestas:
La zip
función es útil aquí, se usa con una comprensión de lista.
[x + y for x, y in zip(first, second)]
Si tiene una lista de listas (en lugar de solo dos listas):
lists_of_lists = [[1, 2, 3], [4, 5, 6]]
[sum(x) for x in zip(*lists_of_lists)]
# -> [5, 7, 9]
first
es longitud 10 y second
longitud 6, el resultado de comprimir los iterables será la longitud 6.
>>> lists_of_lists = [[1, 2, 3], [4, 5, 6]]
>>> [sum(x) for x in zip(*lists_of_lists)]
[5, 7, 9]
De documentos
import operator
list(map(operator.add, first,second))
Suponiendo que ambas listas a
y b
tienen la misma longitud, que no es necesario postal, numpy o cualquier otra cosa.
Python 2.xy 3.x:
[a[i]+b[i] for i in range(len(a))]
El comportamiento predeterminado en numpy es agregar componentes
import numpy as np
np.add(first, second)
que salidas
array([7,9,11,13,15])
Esto se extiende a cualquier número de listas:
[sum(sublist) for sublist in itertools.izip(*myListOfLists)]
En tu caso, myListOfLists
sería[first, second]
izip.from_iterable
?
chain
. Actualizado
Prueba el siguiente código:
first = [1, 2, 3, 4]
second = [2, 3, 4, 5]
third = map(sum, zip(first, second))
map(sum, zip(first, second, third, fourth, ...))
La manera fácil y rápida de hacer esto es:
three = [sum(i) for i in zip(first,second)] # [7,9,11,13,15]
Alternativamente, puedes usar una suma numpy:
from numpy import sum
three = sum([first,second], axis=0) # array([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]
solución de una línea
list(map(lambda x,y: x+y, a,b))
Mi respuesta se repite con la de Thiru que respondió el 17 de marzo a las 9:25.
Fue más simple y rápido, aquí están sus soluciones:
La manera fácil y rápida de hacer esto es:
three = [sum(i) for i in zip(first,second)] # [7,9,11,13,15]
Alternativamente, puedes usar una suma numpy:
from numpy import sum three = sum([first,second], axis=0) # array([7,9,11,13,15])
Necesitas numpy!
matriz numpy podría hacer alguna operación como vectoresimport 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]
Si tiene un número desconocido de listas de la misma longitud, puede usar la siguiente función.
Aquí el * args acepta un número variable de argumentos de lista (pero solo suma el mismo número de elementos en cada uno). El * se utiliza nuevamente para descomprimir los elementos en cada una de las listas.
def sum_lists(*args):
return list(map(sum, zip(*args)))
a = [1,2,3]
b = [1,2,3]
sum_lists(a,b)
Salida:
[2, 4, 6]
O con 3 listas
sum_lists([5,5,5,5,5], [10,10,10,10,10], [4,4,4,4,4])
Salida:
[19, 19, 19, 19, 19]
Puede usar zip()
, que "intercalará" las dos matrices juntas, y luego map()
, que aplicará una función a cada elemento en un iterable:
>>> 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]
Aquí hay otra forma de hacerlo. Hacemos uso de la función interna __add__ de python:
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)
Salida
[11, 22, 33, 44, 55]
Si desea agregar también el resto de los valores en las listas, puede usar esto (esto está funcionando en 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]
Aquí hay otra forma de hacerlo. Me está funcionando bien.
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)]
Quizás el enfoque más simple:
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)
¿Qué pasa si tiene una lista con diferente longitud, entonces puede intentar algo como esto (usando 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]