Yanıtlar:
zip
İşlevi, bir liste anlayışı ile kullanıldığında, burada yararlıdır.
[x + y for x, y in zip(first, second)]
Bir liste listeniz varsa (sadece iki liste yerine):
lists_of_lists = [[1, 2, 3], [4, 5, 6]]
[sum(x) for x in zip(*lists_of_lists)]
# -> [5, 7, 9]
first
uzunluk 10 ve second
uzunluk 6 ise, yinelemeleri sıkıştırmanın sonucu 6 uzunluk olacaktır.
>>> lists_of_lists = [[1, 2, 3], [4, 5, 6]]
>>> [sum(x) for x in zip(*lists_of_lists)]
[5, 7, 9]
Numpy'deki varsayılan davranış bileşen olarak eklenir
import numpy as np
np.add(first, second)
hangi çıktılar
array([7,9,11,13,15])
Bu, herhangi bir sayıda listeye kadar uzanır:
[sum(sublist) for sublist in itertools.izip(*myListOfLists)]
Senin durumunda, myListOfLists
olurdu[first, second]
izip.from_iterable
misin?
chain
. Güncellenmiş
Aşağıdaki kodu deneyin:
first = [1, 2, 3, 4]
second = [2, 3, 4, 5]
third = map(sum, zip(first, second))
map(sum, zip(first, second, third, fourth, ...))
Bunu yapmanın kolay ve hızlı yolu şudur:
three = [sum(i) for i in zip(first,second)] # [7,9,11,13,15]
Alternatif olarak, numpy sum kullanabilirsiniz:
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]
tek astarlı çözüm
list(map(lambda x,y: x+y, a,b))
Cevabım 17 Mart'ta saat 9: 25'te cevaplayan Thiru ile tekrarlandı.
Daha basit ve daha hızlıydı, işte çözümleri:
Bunu yapmanın kolay ve hızlı yolu şudur:
three = [sum(i) for i in zip(first,second)] # [7,9,11,13,15]
Alternatif olarak, numpy sum kullanabilirsiniz:
from numpy import sum three = sum([first,second], axis=0) # array([7,9,11,13,15])
Uyuşmaya ihtiyacın var!
numpy dizi vektörler gibi bazı işlemler yapabilirimport 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]
Aynı uzunlukta bilinmeyen sayıda listeniz varsa, aşağıdaki işlevi kullanabilirsiniz.
Burada * args değişken sayıda liste bağımsız değişkenini kabul eder (ancak her birinde yalnızca aynı sayıda öğeyi toplar). *, Her bir listedeki öğelerin paketini açmak için yeniden kullanılır.
def sum_lists(*args):
return list(map(sum, zip(*args)))
a = [1,2,3]
b = [1,2,3]
sum_lists(a,b)
Çıktı:
[2, 4, 6]
Veya 3 listeli
sum_lists([5,5,5,5,5], [10,10,10,10,10], [4,4,4,4,4])
Çıktı:
[19, 19, 19, 19, 19]
Sen kullanabilirsiniz zip()
sonra bir araya hangi edecek "Interleave" iki diziler, ve map()
bir iterable her elemana bir işlevi uygular, hangi:
>>> 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]
İşte bunu yapmanın başka bir yolu. Python'un dahili __add__ işlevini kullanıyoruz:
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)
Çıktı
[11, 22, 33, 44, 55]
Listelerdeki değerlerin geri kalanını da eklemek isterseniz bunu kullanabilirsiniz (bu Python3.5'te çalışıyor)
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]
İşte bunu yapmanın başka bir yolu, benim için iyi çalışıyor.
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)]
Belki de en basit yaklaşım:
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)
Ya farklı uzunlukta bir listeniz varsa, bunun gibi bir şey deneyebilirsiniz (kullanarak 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]
Bu yöntemi kullanabilirsiniz, ancak yalnızca her iki liste de aynı boyuttaysa çalışacaktır:
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