dict_orgin = {'a': 1, 'b': 2, 'c': 2, 'd': 4} dict_reverse = dict(map(reversed, dict_orgin.items())) print(dict_reverse)