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?
Let's say I have an associative array like so: How can I check if |
|||||
|
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.
if key in array: # do something Associative arrays are called dictionaries in Python and you can learn more about them in the stdtypes documentation. |
|||||
|
|
If you want to retrieve the key's value if it exists, you can also use
If you want to retrieve a default value when the key does not exist, use
|
|||||
|
|
another method is has_key() (if still using 2.X)
|
|||||||||||||||||||
|