Thanks to visit codestin.com
Credit goes to github.com

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
gh-93240: clarify wording in IO tutorial (GH-93276)
Co-authored-by: Adam Turner <[email protected]>
(cherry picked from commit 51d6731)

Co-authored-by: paulreece <[email protected]>
  • Loading branch information
paulreece authored and miss-islington committed Jun 21, 2022
commit e3f035255be4ddbd9ce5f8fdf7848e446d7f1eb2
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