Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/tutorial/controlflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ iteration of the loop::
... if num % 2 == 0:
... print("Found an even number", num)
... continue
... print("Found a number", num)
... print("Found an odd number", num)
Found an even number 2
Found a number 3
Comment thread
ericvsmith marked this conversation as resolved.
Outdated
Found an even number 4
Expand Down