We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45bb613 commit e9cf97cCopy full SHA for e9cf97c
1 file changed
Doc/tutorial/inputoutput.rst
@@ -184,7 +184,7 @@ square brackets ``'[]'`` to access the keys ::
184
185
>>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678}
186
>>> print('Jack: {0[Jack]:d}; Sjoerd: {0[Sjoerd]:d}; '
187
- 'Dcab: {0[Dcab]:d}'.format(table))
+ ... 'Dcab: {0[Dcab]:d}'.format(table))
188
Jack: 4098; Sjoerd: 4127; Dcab: 8637678
189
190
This could also be done by passing the table as keyword arguments with the '**'
0 commit comments