From 6ec7fdc16b9d7480df7b75a0e89e654ecc49f24f Mon Sep 17 00:00:00 2001 From: Ian Bertolacci Date: Thu, 7 Sep 2017 13:26:46 -0700 Subject: [python/en] filled_dict Address #2841 --- python.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python.html.markdown') diff --git a/python.html.markdown b/python.html.markdown index 0de51285..946cbc0c 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -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 -- cgit v1.2.3