bpo-40640: doc -- add missing ... in example of Continue (#26055)

Co-authored-by: Chas Belov <59780179+ChasBelov@users.noreply.github.com>
This commit is contained in:
Irit Katriel 2021-05-12 11:23:03 +01:00 committed by GitHub
parent d597fdc5fd
commit 6574334a68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -214,6 +214,7 @@ iteration of the loop::
... print("Found an even number", num)
... continue
... print("Found an odd number", num)
...
Found an even number 2
Found an odd number 3
Found an even number 4