Merge pull request #19 from partkyle/dictionary-clarification

Added some clarification on the default value for dictionary.get
This commit is contained in:
Adam Bard 2013-06-28 14:02:13 -07:00
commit 16199fe04c

View File

@ -200,6 +200,10 @@ filled_dict.values() #=> [3, 2, 1]
filled_dict["four"] #=> KeyError
# Use get method to avoid the KeyError
filled_dict.get("one") #=> 1
filled_dict.get("four") #=> None
# The get method supports a default argument when the value is missing
filled_dict.get("one", 4) #=> 1
filled_dict.get("four", 4) #=> 4