I need to check if a particular key is present in some dictionary. I can use has_key ?? Is there any other method to compare the items of the list to the key of dictionary.
I have a list like...[(3,4),(4,5)..] I need to check if the (3,4) is there in the dictionary.
has_key()is deprecated in higher versions of Python 2 and has been removed from Python 3. Use Michael Anderson's solution. – Tim Pietzcker Jul 19 '10 at 6:33