Result Size: 625 x 571
demo_while_continue.py:
x
 
i = 0
while i < 6:
  i += 1
  if i == 3:
    continue
  print(i)
# Note that number 3 is missing in the result
C:\Users\My Name>python demo_while_continue.py
1
2
4
5
6