[Python-checkins] bpo-41776: Revise example of "continue" in the tutorial documentation (GH-22234)

Neeraj Samtani webhook-mailer at python.org
Tue Sep 15 09:39:49 EDT 2020


https://github.com/python/cpython/commit/7bcc6456ad4704da9b287c8045768fa53961adc5
commit: 7bcc6456ad4704da9b287c8045768fa53961adc5
branch: master
author: Neeraj Samtani <neerajjsamtani at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-09-15T09:39:29-04:00
summary:

bpo-41776: Revise example of "continue" in the tutorial documentation (GH-22234)

Revise example of "continue" in the tutorial documentation

files:
M Doc/tutorial/controlflow.rst

diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 5d24a19cfc079..b8aec2b04f13f 100644
--- a/Doc/tutorial/controlflow.rst
+++ b/Doc/tutorial/controlflow.rst
@@ -210,15 +210,15 @@ iteration of the loop::
     ...     if num % 2 == 0:
     ...         print("Found an even number", num)
     ...         continue
-    ...     print("Found a number", num)
+    ...     print("Found an odd number", num)
     Found an even number 2
-    Found a number 3
+    Found an odd number 3
     Found an even number 4
-    Found a number 5
+    Found an odd number 5
     Found an even number 6
-    Found a number 7
+    Found an odd number 7
     Found an even number 8
-    Found a number 9
+    Found an odd number 9
 
 .. _tut-pass:
 



More information about the Python-checkins mailing list