I have the following which works well for matching a key within a dictionary.
if mydict.__contains__('bananas'):
print "found"
Is there a way to base the if on the logic that the string is not found
|
I have the following which works well for matching a key within a dictionary.
Is there a way to base the |
||||
| show 1 more comment |
|
This is possible:
|
|||||||||||
|
if not mydict.__contains__('bananas')? – Confusion Aug 3 '12 at 6:57__contains__, usein– jamylak Aug 3 '12 at 6:57indexyou mean key right? If so we should change the question because an index can be interpreted like a list index – jamylak Aug 3 '12 at 7:01