vote up 3 vote down star
1

Hello,

I receive a dictionary as input, and would like to to return a dictionary whose keys will be the input's values and whose value will be the corresponding input keys. Values are unique.

For example, say my input is:

a = dict()
a['one']=1
a['two']=2

I would like my output to be:

{1: 'one', 2: 'two'}

To clarify I would like my result to be the equivalent of the following:

res = dict()
res[1] = 'one'
res[2] = 'two'

Any neat Pythonian way to achieve this?

Thanks

flag

See stackoverflow.com/questions/1087694/… for an identical question that has a nice answer if you're using Python 3 – Stephen Edmonds Sep 24 at 12:48
@Stephen: see the second most voted answer, it's the same as the accepted one in the question you linked to. The crowd preferred the other answer though... – Rax Olgud Sep 25 at 5:36

3 Answers

vote up 14 vote down check
res = dict((v,k) for k,v in a.iteritems())
link|flag
@nosklo, if you think about it, you'll realize that "24 minutes ago" was earlier than "22 minutes ago". – Armandas Jun 23 at 11:28
@Armandas: huh, you're right. hides – nosklo Jun 23 at 11:30
vote up 6 vote down

You could try:

d={'one':1,'two':2}
d2=dict((value,key) for key,value in d.iteritems())
d2
  {'two': 2, 'one': 1}

Beware that you cannot 'reverse' a dictionary if

  1. More than one key shares the same value. For example {'one':1,'two':1}. The new dictionary can only have one item with key 1.
  2. One or more of the values is unhashable. For example {'one':[1]}. [1] is a valid value but not a valid key.

See this thread on the python mailing list for a discussion on the subject.

link|flag
liori already provided that solution, but thanks – Rax Olgud Jun 23 at 11:04
+1 I added a note about values being unique, thanks – Rax Olgud Jun 23 at 11:05
@Alasdair: Right, I got confused with the timestamps – nosklo Jun 23 at 11:32
vote up 6 vote down

res = dict(zip(a.values(), a.keys()))

link|flag
3  
dict does not guarantee that its values() and keys() will return elements in the same order. Also, keys(), values() and zip() return a list, where an iterator would be sufficient. – liori Jun 23 at 11:01
You are right. Your answer is more efficient. – pkit Jun 23 at 11:05
6  
@liori: You're wrong. dict guarantees that its values() and keys() WILL be on the same order, if you don't modify the dict between calls to values() and keys() of course. The documentation states that here: (read the "Note" part: docs.python.org/library/stdtypes.html#dict.items/…) "If items(), keys(), values(), iteritems(), iterkeys(), and itervalues() are called with no intervening modifications to the dictionary, the lists will directly correspond." – nosklo Jun 23 at 11:12
Ok, then I am wrong... I haven't checked the online docs. Thank you for pointing this. – liori Jun 23 at 11:16
You could use the iterator itertools.izip instead of zip to make this answer more efficient. – Alasdair Jun 23 at 11:17
show 2 more comments

Your Answer

Get an OpenID
or

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