Say I have a dictionary like so:
my_dict = {2:3, 5:6, 8:9}
Is there a way that I can switch the keys and values to get:
{3:2, 6:5, 9:8}
|
Say I have a dictionary like so:
Is there a way that I can switch the keys and values to get:
|
|||
|
If you are using python 2.7 or 3.x you can use a dictionary comprehension instead:
Edit As noted in the comments by JBernardo, for python 3.x you need to use |
||||
|
Try this:
|
|||
|
|
|
maybe:
|
|||||||
|
|
Use this code (trivially modified) from the accepted answer at Python reverse / inverse a mapping:
Note that this assumes that the values in the original dictionary are unique. Otherwise you'd end up with duplicate keys in the resulting dictionary, and that is not allowed. And, as @wim points out, it also assumes the values are hashable. See the Python glossary if you're not sure what is and isn't hashable. |
||||
|
|