demo_ref_keyword_continue.py:
for i in range(9): if i == 3: continue print(i)
C:\Users\My Name>python demo_keyword_continue.py
0
1
2
4
5
6
7
8
9