Python continue语句
Posted Hany博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python continue语句相关的知识,希望对你有一定的参考价值。
Python continue语句:
当执行到 continue 语句时,将不再执行本次循环中 continue 语句接下来的部分,而是继续下一次循环。
lst = [7,8,9,4,5,6]
for i in range(len(lst)):
if lst[i] == 9:
continue
#当运行到 continue 语句时,不执行本次循环中剩余的代码,而是继续下一层循环
print(lst[i],end = " ")
# 7 8 4 5 6
当存在嵌套循环时:
lst = [7,8,9,4,5,6]
for i in range(2):
for j in range(len(lst)):
if lst[j] == 4:
continue # 跳出本次循环,进入下一层循环
print(lst[j], end=" ")
print()
# 7 8 9 5 6
# 7 8 9 5 6
2020-02-06
以上是关于Python continue语句的主要内容,如果未能解决你的问题,请参考以下文章
Python基础(循环控制语句break/continue)
python break ,continue和 pass 语句