Python/gloss python for continue

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python继续循环

继续声明

随着 继续 语句,我们可以停止循环的当前迭代,然后继续下一个:

不要打印香蕉:

  fruits = ["apple", "banana", "cherry"]
for x in fruits:
  if x == 
  "banana":
    continue
  print(x)