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

Co-authored-by: Chas Belov <59780179+ChasBelov@users.noreply.github.com>
(cherry picked from commit 6574334a68)
This commit is contained in:
Miss Islington (bot) 2021-05-12 03:28:10 -07:00 committed by GitHub
parent 0cb9775a85
commit ada9cdb941
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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