Skip to content
Advertisement

How to combine a list of lists into a dictionary where the first sublist is mapped to corresponding values in all subsequent sublists?

I have a list of lists, where the first list is a ‘header’ list and the rest are data lists. Each of these ‘sub’ lists are the same size, as shown below:

JavaScript

I want to merge all of these ‘sub’ lists into one dictionary, using that first ‘sub’ list as a header row that maps each value in the row to a corresponding value in subsequent rows.

This is how my output should look:

JavaScript

As you can see, 1, 2, etc. are unique row numbers (they correspond to the Sno column in the header list).


So far, I am able to get every second element as the key using this code:

JavaScript

Which outputs:

JavaScript

But I don’t know how make each of the data ‘sub’ lists a dictionary mapped to the corresponding headers.

How can I get my desired output?

Advertisement

Answer

Something like

JavaScript

output

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement