Skip to content

Commit 4f919a7

Browse files
committed
changed the inputoutput docs to reflect the more specific wording mentioned in the issue discussion
1 parent 259dd71 commit 4f919a7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Doc/tutorial/inputoutput.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ square brackets ``'[]'`` to access the keys. ::
179179
... 'Dcab: {0[Dcab]:d}'.format(table))
180180
Jack: 4098; Sjoerd: 4127; Dcab: 8637678
181181

182-
This could also be done by passing the table as keyword arguments with the '**'
183-
notation. ::
182+
This could also be done by passing the ``table`` dictionary as keyword arguments with the ``**`` notation. ::
184183

185184
>>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678}
186185
>>> print('Jack: {Jack:d}; Sjoerd: {Sjoerd:d}; Dcab: {Dcab:d}'.format(**table))

0 commit comments

Comments
 (0)