diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-21 19:51:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 19:51:34 (GMT) |
commit | 6432a8972b27aa0f2ef625ec538f8487f12e14de (patch) | |
tree | a4f519b01b4162e9a98b0b4ce67f2072248c7031 /Doc | |
parent | 9ab245f8ca84e75c6d11d3683f498427b1425366 (diff) | |
download | cpython-6432a8972b27aa0f2ef625ec538f8487f12e14de.zip cpython-6432a8972b27aa0f2ef625ec538f8487f12e14de.tar.gz cpython-6432a8972b27aa0f2ef625ec538f8487f12e14de.tar.bz2 |
gh-93240: clarify wording in IO tutorial (GH-93276) (GH-94081)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
(cherry picked from commit 51d673176ac90f2144e3e7a492e5b3ea53bdba2e)
Co-authored-by: paulreece <96156234+paulreece@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tutorial/inputoutput.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst index b500636..1f1ef28 100644 --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -179,7 +179,7 @@ square brackets ``'[]'`` to access the keys. :: ... 'Dcab: {0[Dcab]:d}'.format(table)) Jack: 4098; Sjoerd: 4127; Dcab: 8637678 -This could also be done by passing the table as keyword arguments with the '**' +This could also be done by passing the ``table`` dictionary as keyword arguments with the ``**`` notation. :: >>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678} |