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
|
|
|
|
|
|
|
|
||||||||||||
|
|
|
Use dict.has_key() if (and only if) your code is required to be runnable by Python versions earlier than 2.3 (when |
||
|
|
|
|
|
||
|
|
|
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 |
||
|
|
|
According to python docs:
|
||
|
|
|
|
My $0.02: the more Pythonic answer would be to use |
||
|
|