From 25fa141487e61b94f15289619cb3af764cf65e58 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Fri, 7 Sep 2018 11:31:47 +0200 Subject: Doc: Missing 'f' in an f-string. (GH-9074) --- Doc/tutorial/inputoutput.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst index dfe4c3849c..a92c266815 100644 --- a/Doc/tutorial/inputoutput.rst +++ b/Doc/tutorial/inputoutput.rst @@ -127,7 +127,7 @@ applies :func:`repr`:: >>> animals = 'eels' >>> print(f'My hovercraft is full of {animals}.') My hovercraft is full of eels. - >>> print('My hovercraft is full of {animals !r}.') + >>> print(f'My hovercraft is full of {animals !r}.') My hovercraft is full of 'eels'. For a reference on these format specifications, see -- cgit v1.2.1