ฉันมีสองรายการต่อไปนี้:
first = [1,2,3,4,5]
second = [6,7,8,9,10]
ตอนนี้ฉันต้องการเพิ่มรายการจากทั้งสองรายการนี้ลงในรายการใหม่
ผลลัพธ์ควรเป็น
third = [7,9,11,13,15]
ฉันมีสองรายการต่อไปนี้:
first = [1,2,3,4,5]
second = [6,7,8,9,10]
ตอนนี้ฉันต้องการเพิ่มรายการจากทั้งสองรายการนี้ลงในรายการใหม่
ผลลัพธ์ควรเป็น
third = [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]
first
ความยาว 10 และsecond
ความยาว 6 ผลลัพธ์ของการบีบอัดรายการจะมีความยาว 6
>>> lists_of_lists = [[1, 2, 3], [4, 5, 6]]
>>> [sum(x) for x in zip(*lists_of_lists)]
[5, 7, 9]
สมมติทั้งสองรายการa
และb
มีความยาวเดียวกันคุณไม่จำเป็นต้องซิป numpy หรือสิ่งอื่นใด
Python 2.x และ 3.x:
[a[i]+b[i] for i in range(len(a))]
ลักษณะการทำงานเริ่มต้นใน numpy คือเพิ่ม componentwise
import numpy as np
np.add(first, second)
ซึ่งเอาต์พุต
array([7,9,11,13,15])
สิ่งนี้ขยายตัวเองไปยังรายการจำนวนเท่าใดก็ได้:
[sum(sublist) for sublist in itertools.izip(*myListOfLists)]
ในกรณีของคุณmyListOfLists
จะเป็น[first, second]
izip.from_iterable
?
chain
ฉันคิดว่าฉันคิดของ อัปเดต
ลองใช้รหัสต่อไปนี้:
first = [1, 2, 3, 4]
second = [2, 3, 4, 5]
third = map(sum, zip(first, second))
map(sum, zip(first, second, third, fourth, ...))
วิธีที่ง่ายและรวดเร็วในการดำเนินการนี้คือ:
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])
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]
โซลูชันหนึ่งซับ
list(map(lambda x,y: x+y, a,b))
คำตอบของฉันซ้ำกับของ Thiru ที่ตอบในวันที่ 17 มี.ค. เวลา 09: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])
คุณต้องมึน!
อาร์เรย์จำนวนนับสามารถดำเนินการบางอย่างเช่นเวกเตอร์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]
หากคุณมีรายการที่ไม่ทราบจำนวนที่มีความยาวเท่ากันคุณสามารถใช้ฟังก์ชันด้านล่างนี้
ที่นี่ * 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]
คุณสามารถใช้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]
นี่เป็นอีกวิธีหนึ่งที่จะทำได้ เราใช้ประโยชน์จากฟังก์ชัน __add__ ภายในของ 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)
เอาท์พุต
[11, 22, 33, 44, 55]
หากคุณต้องการเพิ่มค่าที่เหลือในรายการคุณสามารถใช้สิ่งนี้ได้ (ใช้งานได้ใน 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]
นี่เป็นอีกวิธีที่จะทำได้มันทำงานได้ดีสำหรับฉัน
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]
จะเกิดอะไรขึ้นถ้าคุณมีรายการที่มีความยาวแตกต่างกันคุณสามารถลองสิ่งนี้ (โดยใช้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 = []
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