Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Append values to a list that has a nested list python

I have two lists:

L1 = [[a,b,c],[d,e,f]]
L2 = [1,2]

I want the output to be:

L3 = [[[a,b,c],1], [[d,e,f],2]]

How do I do this?

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

You can also use a list comprehension, assuming your lists always have equal sizes:

L3 = [[L1[i], L2[i]] for i in range(len(L1))]
print(L3)

Output:

[[['a', 'b', 'c'], 1], [['d', 'e', 'f'], 2]]
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading