We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f919a7 commit 59a4c0dCopy full SHA for 59a4c0d
Doc/tutorial/inputoutput.rst
@@ -179,7 +179,8 @@ square brackets ``'[]'`` to access the keys. ::
179
... 'Dcab: {0[Dcab]:d}'.format(table))
180
Jack: 4098; Sjoerd: 4127; Dcab: 8637678
181
182
-This could also be done by passing the ``table`` dictionary as keyword arguments with the ``**`` notation. ::
+This could also be done by passing the ``table`` dictionary as keyword arguments with the ``**``
183
+notation. ::
184
185
>>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678}
186
>>> print('Jack: {Jack:d}; Sjoerd: {Sjoerd:d}; Dcab: {Dcab:d}'.format(**table))
0 commit comments