Given a dictionary like so:
my_map = {\'a\': 1, \'b\': 2}
How can one invert this map to get:
inv_map = {1: \'a\', 2: \'b\'
Assuming that the values in the dict are unique:
dict((v, k) for k, v in my_map.iteritems())