码迷,mamicode.com
首页 > 编程语言 > 详细

Python continue语句

时间:2020-02-06 14:58:56      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:循环   pre   存在   class   center   ext   style   san   mil   

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语句

标签:循环   pre   存在   class   center   ext   style   san   mil   

原文地址:https://www.cnblogs.com/hany-postq473111315/p/12268306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!