Given a dictionary like so:
map = { 'a': 1, 'b':2 }
How can one invert this map to get:
inv_map = { 1: 'a', 2: 'b' }
|
Given a dictionary like so:
How can one invert this map to get:
|
||||
|
|
|
for python 2.7+ / 3+:
|
|||||||||
|
|
Assuming that the values in the dict are unique:
|
|||||||||||||
|
|
If the values in
|
|||||||||
|
|
Try this :
or alternatively
or using python 3.0's dict comprehensions
|
|||||||||||||||||||
|
|
If the values aren't unique, and you're a little hardcore:
Especially for a large dict, note that this solution is far less efficient than the answer Python reverse / inverse a mapping because it loops over |
|||||||||||||||
|
|
For all kinds of dictionary, no matter if they don't have unique values to use as keys, you can create a list of keys for each value
|
||||
|
|
This expands upon the answer Python reverse / inverse a mapping, applying to when the values in the dict aren't unique.
The implementation is limited in that you cannot use |
||||
|
|
|
In addition to the other functions suggested above, if you like lambdas:
|
||||
|
|