We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9925d8 commit 25fa141Copy full SHA for 25fa141
1 file changed
Doc/tutorial/inputoutput.rst
@@ -127,7 +127,7 @@ applies :func:`repr`::
127
>>> animals = 'eels'
128
>>> print(f'My hovercraft is full of {animals}.')
129
My hovercraft is full of eels.
130
- >>> print('My hovercraft is full of {animals !r}.')
+ >>> print(f'My hovercraft is full of {animals !r}.')
131
My hovercraft is full of 'eels'.
132
133
For a reference on these format specifications, see
0 commit comments