I have three lists, the first is a list of names, the second is a list of dictionaries, and the third is a list of data. Each position in a list corresponds with the same positions in the other lists. List_1[0] has corresponding data in List_2[0] and List_3[0], etc. I would like to turn these three lists into a dictionary inside a dictionary, with the values in List_1 being the primary keys. How do I do this while keeping everything in order?
|
|
See the documentation for more info on As lionbest points out below, you might want to look at |
|||
|
|
Python 3:
Python 2.5:
|
||
|
|
|
|
if the order of these things matters, you should not use a dictionary. by definition, they are unordered. you can use one of the many ordered_dictionary implementations floating around, or wait for python 2.7 or 3.1 which will include an ordered dictionary implementation in the collections module. |
||
|
|
