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

I have a big dictionary object that has several key value pairs (about 16), I am only interested in 3 of them. What is the best way (shortest/efficient/elegant) to achieve that?

The best I know is:

bigdict = {'a':1,'b':2,....,'z':26} 
subdict = {'l':bigdict['l'], 'm':bigdict['m'], 'n':bigdict['n']}

I am sure there is more elegant way than this. Ideas?

share|improve this question

5 Answers

up vote 23 down vote accepted

You could try:

dict((k, bigdict[k]) for k in ('l', 'm', 'n'))

... or in Python 3 Python versions 2.7 or later (thanks to Fábio Diniz for pointing that out that it works in 2.7 too):

{k: bigdict[k] for k in ('l', 'm', 'n')}

Update: As Håvard S points out, I'm assuming that you know the keys are going to be in the dictionary - see his answer if you aren't able to make that assumption.

share|improve this answer
Will fail if bigdict does not contain k – Håvard S Mar 18 '11 at 13:29
A bit harsh to downvote that - it seemed pretty clear from the context to me that it's known that these keys are in the dictionary... – Mark Longair Mar 18 '11 at 13:31
@Håvard S: I think from the OPs post, we can assume that all given given elements are in bigdict. – phimuemue Mar 18 '11 at 13:32
@Mark Longair I made a comment, but no downvote, just as I did with the other answers not checking if the keys are present – Håvard S Mar 18 '11 at 13:34
"or in Python 3" or "or in Python >= 2.7"? – Fábio Diniz Mar 18 '11 at 13:36
show 2 more comments

A bit shorter, at least:

wanted_keys = ['l', 'm', 'n'] # The keys you want
dict([(i, bigdict[i]) for i in wanted_keys if i in bigdict])
share|improve this answer
+1 for if i in bigdict! – Jinghao Shi Apr 15 at 20:05
interesting_keys = ('l', 'm', 'n')
subdict = dict([(x, bigdict[x]) for x in interesting_keys if x in bigdict])
share|improve this answer

Maybe:

subdict=dict([(x,bigdict[x]) for x in ['l', 'm', 'n']])

Python 3 even supports the following:

subdict={a:bigdict[a] for a in ['l','m','n']}

Note that you can check for existence in dictionary as follows:

subdict=dict([(x,bigdict[x]) for x in ['l', 'm', 'n'] if x in bigdict])

resp. for python 3

subdict={a:bigdict[a] for a in ['l','m','n'] if a in bigdict}
share|improve this answer
Fails if a is not in bigdict – Håvard S Mar 18 '11 at 13:31

Yet another one (I prefer Mark Longair's answer)

di = {'a':1,'b':2,'c':3}
req = ['a','c','w']
dict([i for i in di.iteritems() if i[0] in di and i[0] in req])
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.