Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[3.11] gh-93240: clarify wording in IO tutorial (GH-93276)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
(cherry picked from commit 51d6731)

Co-authored-by: paulreece <96156234+paulreece@users.noreply.github.com>
  • Loading branch information
paulreece authored and ambv committed Jun 21, 2022
commit 65b435ce47557226b75c4c0e9610a3be8d88be6f
2 changes: 1 addition & 1 deletion Doc/tutorial/inputoutput.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down