Appending element of one list to sub-list of another list

Suppose I have the following lists:

l1 = [['a'],['b'],['c'],['d']]
l2 = [1,2,3,4]

I want to make a new list where each element of second list would be appended to each sub-list of l1 the desired out should be:

[['a',1],['b',2],['c',3],['d',4]]

yet when I do [k for i in zip(l1, l2) for k in i], I get the following:

[['a'], 1, ['b'], 2, ['c'], 3, ['d'], 4]

which is not desired I wonder what am I doing wrong here?

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

With the nested loop, you’re unpacking the sublists. You could use list concatenation instead:

out = [i+[j] for i,j in zip(l1, l2)]

Output:

[['a', 1], ['b', 2], ['c', 3], ['d', 4]]

Method 2

If you want to modify l1 in place:

l1 = [['a'],['b'],['c'],['d']]
l2 = [1,2,3,4]

for x,y in zip(l1, l2):
    x.append(y)

output:

[['a', 1], ['b', 2], ['c', 3], ['d', 4]]


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x