代码示例:(标识:python_while_continue)
python_while_continue.py
i = 0
while i < 7:
  i += 1 
  if i == 3:
    continue
  print(i)
运行结果: