Commit 31a11902 authored by Eli Bendersky's avatar Eli Bendersky

tutorial typo fix

parent 75fd2251
......@@ -195,7 +195,7 @@ The :keyword:`continue` statement, also borrowed from C, continues with the next
iteration of the loop::
>>> for num in range(2, 10):
... if x % 2 == 0:
... if num % 2 == 0:
... print("Found an even number", num)
... continue
... 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