continue 语句使用
在 for 循环中使用 continue 语句
以下实例为学习在 for 循环中使用 continue 语句,具体代码如下:
# Filename : example.py
# Author by : www.lidihuo.com
fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
continue
print(x)
执行以上代码输出结果为:
# Filename : example.py
# Author by : www.lidihuo.com
apple
cherry