Blog Rizauddin
And He found you lost and guided [you]. [93:7]
Pages
Home
Python
LaTeX
Linux
Windows
Travelog
About
Thursday, April 1, 2010
Python: Swapping the keys and values of a dictionary
A function to swap the keys and immutable values of a dictionary.
def swap_dict(a_dict):
return {val:key for key, val in a_dict.items()}
Example of usage:
>>> print(swap_dict({1: 'a', 2: 'b', 3: 'c'}))
{'a': 1, 'c': 3, 'b': 2}
Newer Post
Older Post
Home