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')):
....
What's the cleanest way to test if a dictionary contains a key?
|
|||||||||||||||
|
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.
and a quick search reveals some nice information about it: http://docs.python.org/2/tutorial/datastructures.html#sets |
||||