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

What's the cleanest way to test if a dictionary contains a key?

x = {'a' : 1, 'b' : 2}
if (x.contains_key('a')):
    ....
share|improve this question
3  
The tutorial is your friend. – Björn Pollex Mar 15 '11 at 13:59
-1 due to duplicate question. – Steven Rumbalski Mar 15 '11 at 14:33
1  
@Steven - I believe duplicates are helpful, because they make this question easier to find. I did search before I posted, and didn't find what I'm looking for. – ripper234 Mar 15 '11 at 15:09
@ripper234: This closed question will indeed make it easier for future searches to find the answered question, but that doesn't make the question all that valuable in and of itself. – Steven Rumbalski Mar 15 '11 at 15:21
@Steven - "all that valuable" - valuable enough not to get -1 votes, even if not valuable enough for +1. That's just IMHO of course, you're free to vote as you wish :) – ripper234 Mar 15 '11 at 15:36
show 1 more comment

marked as duplicate by Björn Pollex, Jochen Ritzel, eumiro, nmichaels, katrielalex Mar 15 '11 at 14:39

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.

1 Answer

'a' in x

and a quick search reveals some nice information about it: http://docs.python.org/2/tutorial/datastructures.html#sets

share|improve this answer
Thanks, RTFM. I'm out of votes today and I can't even accept your answer yet :) – ripper234 Mar 15 '11 at 13:57
2  
It may be obvious to some, but you can use this with if 'a' in x:. – Sam Mar 15 '11 at 13:57
1  
'a' in x or 'a' not in x is good. – lichengwu Dec 27 '12 at 6:56

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