I've got such a dict:
{'ab20': 'London', 'kn44': 'London', 'fe85': 'London', 'fg487': 'Paris', 'fe32': 'Paris'...}
It makes much more sence, if I change it into something like this:
{'London': ['ab20', 'kn44', 'fe85'], 'Paris': ['fg487', 'fe32'] ... }
What is the most efficient way to do this?