I'm trying to learn python and i'm doing some basic exercises like this one. I've tried using list comprehension, but the newly created list has only the sum of the first two elements. How can i put the remaining integers of L1 in L3 using list comprehension?
L1 = [3, 7, 1, 54]
L2 = [0, 128]
L3 = [x+y for x,y in zip(L1, L2)]
for i in L3:
print(i, end= " ")