Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given a dictionary like so:

map = { 'a': 1, 'b':2 }

How can one invert this map to get:

inv_map = { 1: 'a', 2: 'b' }
share|improve this question

9 Answers

up vote 69 down vote accepted

for python 2.7+ / 3+:

inv_map = {v:k for k, v in map.items()}
share|improve this answer
7  
Dict comprehensions are in 2.7 too, now. – pluma Mar 2 '11 at 16:03
3  
in python2.7+, using map.iteritems() would be more efficient. – Mike Fogel Dec 4 '12 at 23:40

Assuming that the values in the dict are unique:

dict((v,k) for k, v in map.iteritems())
share|improve this answer
2  
What if the values aren't unique? – Buttons840 Apr 27 '12 at 20:34
2  
The values have to be hashable too – gnibbler May 24 '12 at 1:52
1  
I believe the answer by SilentGhost is preferable to this one for Python 2.7 and up because dict comprehensions are more concise. – Brian M. Hunt Mar 5 at 20:09

If the values in map aren't unique:

inv_map = {}
for k, v in map.iteritems():
    inv_map[v] = inv_map.get(v, [])
    inv_map[v].append(k)
share|improve this answer
15  
... or just inv_map.setdefault(v, []).append(k). I used to be a defaultdict fanboy, but then I got screwed one too many times and concluded that actually explicit is better than implicit. – alsuren Nov 10 '10 at 14:55
@Robert - hope its not too late to ask. What is inv_map. Where is it getting initialized, before your code uses it. Not clear. – goldenmean Apr 4 '12 at 10:00
it's initialized as an empty dict, like in @Robert Rossney's answer – Maus Dec 21 '12 at 0:22

Try this :

inv_map = dict(zip(map.values(), map.keys()))

or alternatively

inv_map = dict((map[k], k) for k in map)

or using python 3.0's dict comprehensions

inv_map = {map[k] : k for k in map}
share|improve this answer
Would this be slwoer than Heikogerlach's solution because it has to iterate through the map twice - once for the values, once for the keys? Thanks! – Brian M. Hunt Jan 27 '09 at 14:56
3  
Based on my own testing using the timeit class, surprisingly, my first and third methods take roughly half as long as my own second method and Heikogerlach's solution. I didn't do any major testing, just a few test cases. – sykora Jan 27 '09 at 15:29
1  
Do values() and keys() guarantee that they will return their items in the same order? If not, then you wouldn't end up with the mapping that you started with. – davidavr Jan 27 '09 at 22:11
1  
Both values() and keys() will return them in the same order. The order itself is according to python's internal storage of the keys, but the order will not change between values() and keys() (Unless of course the dictionary itself changes in between the calls). – sykora Jan 28 '09 at 0:47
3  
Argh, why do I always find the answer in the last place I look? docs.python.org/3.0/library/… . Everybody satisfied? :) – sykora Jan 29 '09 at 13:28
show 3 more comments
def inverse_mapping(f):
    return f.__class__(map(reversed, f.items()))
share|improve this answer

If the values aren't unique, and you're a little hardcore:

inv_map = \
    dict((v, [k for (k, xx) in filter(lambda (key, value): value == v, map.items())]) 
          for v in set(map.values()))

Especially for a large dict, note that this solution is far less efficient than the answer Python reverse / inverse a mapping because it loops over items() multiple times.

share|improve this answer
1  
This is a great hack! – Sadjad Aug 29 '11 at 7:07
1  
You don't have to escape newlines inside parens, most of your backslashes aren't needed and just ugly up the code. – Buttons840 Apr 27 '12 at 20:35
@Buttons840 True, corrected. – pcv May 9 '12 at 0:52
2  
This is just plain unreadable and a good example of how to not write maintainable code. I won't -1 because it still answers the question, just my opinion. – Russ Bradberry Oct 3 '12 at 19:19

For all kinds of dictionary, no matter if they don't have unique values to use as keys, you can create a list of keys for each value

inv_map = {v: inv_map.get(v, []) + [k] for k,v in map.items()}
share|improve this answer
have you tested it for non-unique values? e.g. map = { 'a': 1, 'b':2, 'c':1 } gives {1: ['c'], 2: ['b']} for inv_map, 'a' gets lost (I put inv_map = {} before your line) – Matthias 009 May 1 '12 at 16:36

This expands upon the answer Python reverse / inverse a mapping, applying to when the values in the dict aren't unique.

class ReversibleDict(dict):

    def reversed(self):
        """
        Return a reversed dict, with common values in the original dict
        grouped into a list in the returned dict.

        Example:
        >>> d = ReversibleDict({'a': 3, 'c': 2, 'b': 2, 'e': 3, 'd': 1, 'f': 2})
        >>> d.reversed()
        {1: ['d'], 2: ['c', 'b', 'f'], 3: ['a', 'e']}
        """

        revdict = {}
        for k, v in self.iteritems():
            revdict.setdefault(v, []).append(k)
        return revdict

The implementation is limited in that you cannot use reversed twice and get the original back. It is not symmetric as such. It is tested with Python 2.6. Here is a use case of how I am using to print the resultant dict.

share|improve this answer

In addition to the other functions suggested above, if you like lambdas:

invert = lambda mydict: {v:k for k, v in mydict.items()}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.