vote up 2 vote down star

I wanted to test if a key exists in a dictionary before updating the value for the key. I wrote the following code:

if 'key1' in dict.keys():
  print "blah"
else:
  print "boo"

I think this is not the best way to accomplish this task. Is there a better way to test for a key in the dictionary?

flag

80% accept rate

5 Answers

vote up 7 vote down check

in is the intended way to test for the existence of a key in a dict.

d = dict()

for i in xrange(100):
    key = i % 10
    if key in d:
        d[key] += 1
    else:
        d[key] = 1

If you wanted a default, you can always use dict.get():

d = dict()

for i in xrange(100):
    key = i % 10
    d[key] = d.get(key, 0) + 1

... and if you wanted to always ensure a default value for any key you can use defaultdict from the collections module, like so:

from collections import defaultdict

d = defaultdict(lambda: 0)

for i in xrange(100):
    d[i % 10] += 1

... but in general, the in keyword is the best way to do it.

link|flag
I usually just use get if I'm going to be pulling the item out of the dictionary anyway. No sense in using in and pulling the item out of the dictionary. – Jason Baker Oct 21 at 19:12
I fully agree. But if you only need to know if a key exists, or you need to distinguish between a case where the key is defined and a case where you are using a default, in is the best way of doing it. – Chris B. Oct 21 at 19:16
Thanks guys... great feedback. I am understanding the subtleties of the language better with each of your replies. – Mohan Gulati Oct 21 at 19:19
vote up 1 vote down

There are two different ways to do it:

  1. key in dict
  2. dict.has_key(key)

You might also want to check out the Python Quick Reference.

EDIT:

As noted, "has_key" is deprecated in Python 3.0+.

link|flag
2  
dict.has_key(key) has been deprecated in favor of key in dict – David Locke Oct 21 at 19:28
@David, thanks... I haven't really looked at 3.0, yet. – Michael Aaron Safyan Oct 21 at 20:04
vote up 3 vote down

I would recommend using the setdefault method instead. It sounds like it will do everything you want.

>>> d = {'foo':'bar'}
>>> q = d.setdefault('foo','baz') #Do not override the existing key
>>> print q #The value takes what was originally in the dictionary
bar
>>> print d
{'foo': 'bar'}
>>> r = d.setdefault('baz',18) #baz was never in the dictionary
>>> print r #Now r has the value supplied above
18
>>> print d #The dictionary's been updated
{'foo': 'bar', 'baz': 18}
link|flag
1  
What does setdefault have to do with the OP's question? – hughdbrown Oct 21 at 19:11
@hughdbrown "I wanted to test if a key exists in a dictionary before updating the value for the key." Sometimes posts include code that generate a flurry of responses to something that's not quite the original goal. To accomplish the goal stated in the first sentence, setdefault is the most effective method, even though it's not a drop-in replacement for the sample code posted. – David Berger Oct 21 at 19:14
vote up 3 vote down

You can shorten this:

if 'key1' in dict:
    ...

However, this is at best a cosmetic improvement. Why do you believe this is not the best way?

link|flag
7  
This is much more than a cosmetic improvement. The time to find a key using this method is O(1) whereas calling keys would generate a list and be O(n). – Jason Baker Oct 21 at 19:08
Good point. +1 to your answer. – Greg Hewgill Oct 21 at 19:09
vote up 14 vote down

You don't have to call keys:

if 'key1' in dict:
  print "blah"
else:
  print "boo"

That will be much faster as it uses the dictionary's hashing as opposed to doing a linear search, which calling keys would do.

link|flag
That is great. I was under the impression that it would internally still traverse the list of keys, but I see this works more like testing membership in a set. – Mohan Gulati Oct 21 at 19:20
@Mohan Gulati: You understand that a dictionary is a hashtable of keys mapped to values, right? A hashing algorithm converts the key to an integer and the integer is used to find a location in the hash table that matches. en.wikipedia.org/wiki/Hash_table – hughdbrown Oct 22 at 2:31

Your Answer

Get an OpenID
or

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