Answers for "how to swap dictionary values in python"

0

swap keys and values in dictionary python

my_dict = {'x':1, 'y':2, 'z':3}
my_swapped_dict = {v: k for k, v in my_dict.items()}
#{1: 'x', 2: 'y', 3: 'z'}
Posted by: Guest on June-14-2021

Code answers related to "how to swap dictionary values in python"

Python Answers by Framework

Browse Popular Code Answers by Language