Python 继续循环
continue 语句
使用 continue 语句,我们可以停止循环的当前迭代,并继续下一个:
实例
不打印 banana:
fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x ==
"banana":
continue
print(x)
亲自试一试 »
使用 continue 语句,我们可以停止循环的当前迭代,并继续下一个:
不打印 banana:
fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x ==
"banana":
continue
print(x)
亲自试一试 »
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。