[python/en] filled_dict

Address #2841
This commit is contained in:
Ian Bertolacci 2017-09-07 13:26:46 -07:00 committed by GitHub
parent f72c4ef5e1
commit 6ec7fdc16b

View File

@ -302,7 +302,7 @@ filled_dict.values() # => [3, 2, 1]
# Note - Same as above regarding key ordering.
# Get all key-value pairs as a list of tuples with "items()"
filled_dicts.items() # => [("one", 1), ("two", 2), ("three", 3)]
filled_dict.items() # => [("one", 1), ("two", 2), ("three", 3)]
# Check for existence of keys in a dictionary with "in"
"one" in filled_dict # => True