Skip to content

Commit 59a4c0d

Browse files
paulreeceAA-Turner
andcommitted
Update Doc/tutorial/inputoutput.rst
Co-authored-by: Adam Turner <[email protected]>
1 parent 4f919a7 commit 59a4c0d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Doc/tutorial/inputoutput.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ 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`` dictionary as keyword arguments with the ``**`` notation. ::
182+
This could also be done by passing the ``table`` dictionary as keyword arguments with the ``**``
183+
notation. ::
183184

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

0 commit comments

Comments
 (0)