diff options
author | Andre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org> | 2017-09-08 00:11:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-08 00:11:55 +0300 |
commit | 2a3fbe26b6d77fff04b64c56f939e8338b9f800c (patch) | |
tree | ee8637e66d687d04ef6cdd0e6e9f907e2724d7e0 | |
parent | f72c4ef5e1bf8fab0651fe0d0cf3eb5cdb94edcf (diff) | |
parent | 6ec7fdc16b9d7480df7b75a0e89e654ecc49f24f (diff) |
Merge pull request #2842 from ian-bertolacci/patch-1
[python/en] Correct a variable name
-rw-r--r-- | python.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
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 |