1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-10 16:54:33 +02:00

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

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