From: paulreece <96156234+paulreece@users.noreply.github.com> Date: Tue, 21 Jun 2022 19:40:11 +0000 (-0400) Subject: gh-93240: clarify wording in IO tutorial (GH-93276) X-Git-Tag: v3.12.0a1~1173 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=51d673176ac90f2144e3e7a492e5b3ea53bdba2e;p=thirdparty%2FPython%2Fcpython.git gh-93240: clarify wording in IO tutorial (GH-93276) Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> --- diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst index b50063654e26..1f1ef28e5cad 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}