my_dict = { 'foo': 42, 'bar': 12.5 } my_dict['foo'] = "Hello" print(my_dict['foo']) #This will give the output: 'Hello'
dict = {value:key for key, value in dict.items()}