How to swap keys and values in a dictionary with Python

1 Answer

0 votes
dic = {'a':1, 'b':2, 'c':3, 'd':4, 'e':5}

dic = {val:key for key, val in dic.items()}

print(dic)




'''
run:

{1: 'a', 2: 'b', 3: 'c', 4: 'd', 5: 'e'}

'''

 



answered Feb 25, 2023 by avibootz
...