mirror of
https://github.com/python/cpython.git
synced 2025-11-13 23:46:24 +00:00
tutorial typo fix
This commit is contained in:
parent
75fd22519f
commit
31a11902b3
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,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)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue