diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 284b68c0010aac..44417134a92ad9 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -208,6 +208,7 @@ iteration of the loop:: ... print("Found an even number", num) ... continue ... print("Found an odd number", num) + ... Found an even number 2 Found an odd number 3 Found an even number 4