Today, I came across the dict method get which, given a key in the dictionary, returns the associated value.
For what purpose is this function useful? If I wanted to find a value associated with a key in a dictionary, I can just do dict[key], and it returns the same thing:
dictionary = {"Name": "Harry", "Age": 17}
dictionary["Name"]
dictionary.get("Name")
Thank you very much in advance!
dictionary["foo"]anddictionary.get("foo")behave differently, though. – Niklas B. Jun 14 '12 at 21:13