vote up 8 vote down star

Hi,

I wonder what is better to do:

d = {'a': 1, 'b': 2}
'a' in d
True

or:

d = {'a': 1, 'b': 2}
d.has_key('a')
True
flag

6 Answers

vote up 35 vote down check

in is definitely more pythonic, in fact has_key() was removed in python 3.x: http://docs.python.org/3.1/whatsnew/3.0.html#builtins

link|flag
thanks (added some text to avoid the 15 chars limitation ;)) – igorgue Aug 24 at 16:35
5  
@igorgue: Add spaces. They count, but don't show up in the final comment. – nosklo Aug 24 at 16:50
awesome – igorgue Aug 24 at 16:58
As an addition, in Python 3, to check for the existence in values, instead of the keys, try >>> 1 in d.values() – Selinap Aug 24 at 18:12
yeah, you can use it with lists too... "in" is pretty smart – igorgue Aug 25 at 14:54
vote up 2 vote down

Use dict.has_key() if (and only if) your code is required to be runnable by Python versions earlier than 2.3 (when key in dict was introduced).

link|flag
vote up 3 vote down

has_key is a dictionary method, but in will work on any collection, and even when __contains__ is missing, in will use any other method to iterate the collection to find out.

link|flag
And does also work on iterators "x in xrange(90, 200) <=> 90 <= x < 200" – kaizer.se Aug 28 at 13:21
vote up 20 vote down

in wins hands-down, not just in elegance (and not being deprecated;-) but also in performance, e.g.:

$ python -mtimeit -s'd=dict.fromkeys(range(99))' '12 in d'
10000000 loops, best of 3: 0.0983 usec per loop
$ python -mtimeit -s'd=dict.fromkeys(range(99))' 'd.has_key(12)'
1000000 loops, best of 3: 0.21 usec per loop

While the following observation is not always true, you'll notice that usually, in Python, the faster solution is more elegant and Pythonic; that's why -mtimeit is SO helpful -- it's not just about saving a hundred nanoseconds here and there!-)

link|flag
thanks a lot, good to know, now I'm changing my code to use 'in' instead of has_key() ;) – igorgue Aug 24 at 18:56
vote up 9 vote down

According to python docs:

has_key() is deprecated in favor of key in d.

link|flag
vote up 5 vote down

My $0.02: the more Pythonic answer would be to use in.

link|flag

Your Answer

Get an OpenID
or

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