Commit 2cc49745 authored by Eli Bendersky's avatar Eli Bendersky

Fix typo in tutorial

parent 6ee2187c
...@@ -167,7 +167,7 @@ The :keyword:`continue` statement, also borrowed from C, continues with the next ...@@ -167,7 +167,7 @@ The :keyword:`continue` statement, also borrowed from C, continues with the next
iteration of the loop:: iteration of the loop::
>>> for num in range(2, 10): >>> for num in range(2, 10):
... if x % 2 == 0: ... if num % 2 == 0:
... print("Found an even number", num) ... print("Found an even number", num)
... continue ... continue
... print("Found a number", num) ... print("Found a number", num)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment