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'}

32 s
32

Leave a Reply

Your email address will not be published. Required fields are marked *