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

Possible Duplicate:
What is a good way to test if a Key exists in Python Dictionary

Let's say I have an associative array like so: {'key1': 22, 'key2': 42}.

How can I check if key1 exists in the dictionary?

share|improve this question
1  
this is a duplicate, but the accepted answer for that question isn't all that great – Tim W. Oct 2 '10 at 12:58

marked as duplicate by sdcvvc, aaronasterling, KennyTM, hop, katrielalex Oct 2 '10 at 17:31

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 45 down vote accepted
if key in array:
  # do something

Associative arrays are called dictionaries in Python and you can learn more about them in the stdtypes documentation.

share|improve this answer
3  
And, be sure to put the key name in quotes if it's a string. – JAL Oct 2 '10 at 11:04

If you want to retrieve the key's value if it exists, you can also use

try:
    value = a[key]
except KeyError:
    # Key is not present
    pass

If you want to retrieve a default value when the key does not exist, use value = a.get(key, default_value). If you want to set the default value at the same time in case the key does not exist, use value = a.setdefault(key, default_value).

share|improve this answer
2  
It should be noted that you should only use the try/except case if you expect that the key will be present approaching 100% of the time. otherwise, if in is prettier and more efficient. +1 for mentioning the other possibilities. – aaronasterling Oct 2 '10 at 13:37

another method is has_key() (if still using 2.X)

>>> a={"1":"one","2":"two"}
>>> a.has_key("1")
True
share|improve this answer
2  
has_key is deprecated, removed in python 3, and half as fast in python 2 – aaronasterling Oct 2 '10 at 11:10
yes, but not in 2.X. – ghostdog74 Oct 2 '10 at 11:37
1  
yes it is deprecated in 2.x and yes it is half as fast in python 2.x. – aaronasterling Oct 2 '10 at 11:44
1  
deprecated applies to all new code. once it's deprecated, don't use it anymore. – aaronasterling Oct 2 '10 at 12:40
1  
the form 'key in dict' has existed since 2.2 – Tim W. Oct 2 '10 at 13:01
show 2 more comments

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