We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95a8a0e commit 7bcc645Copy full SHA for 7bcc645
Doc/tutorial/controlflow.rst
@@ -210,15 +210,15 @@ iteration of the loop::
210
... if num % 2 == 0:
211
... print("Found an even number", num)
212
... continue
213
- ... print("Found a number", num)
+ ... print("Found an odd number", num)
214
Found an even number 2
215
- Found a number 3
+ Found an odd number 3
216
Found an even number 4
217
- Found a number 5
+ Found an odd number 5
218
Found an even number 6
219
- Found a number 7
+ Found an odd number 7
220
Found an even number 8
221
- Found a number 9
+ Found an odd number 9
222
223
.. _tut-pass:
224
0 commit comments