diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 26de866aab90cb..93ecc4208e8c50 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -211,6 +211,7 @@ iteration of the loop:: ... print("Found an even number", num) ... continue ... print("Found a number", num) + ... Found an even number 2 Found a number 3 Found an even number 4