Fix typo in tutorial

This commit is contained in:
Eli Bendersky 2012-08-18 09:51:37 +03:00
parent 6ee2187cdc
commit 2cc49745a5
1 changed files with 1 additions and 1 deletions

View File

@ -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)