python_while_continue.py:
x
 
i = 0
while i < 7:
  i += 1 
  if i == 3:
    continue
  print(i)