Get your own Python server Result Size: 625 x 565
x
 
i = 0
while i < 6:
  i += 1
  if i == 3:
    continue
  print(i)
# Note that number 3 is missing in the result
1
2
4
5
6