Python循环-break和continue

Posted Sch01aR#

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python循环-break和continue相关的知识,希望对你有一定的参考价值。

break用于完全结束一个循环,跳出循环体,执行循环后面的语句

# -*- coding:utf-8 -*-
__author__ = "MuT6 Sch01aR"

count = 0
while count <=10:
    print(\'loop\',count)
    if count == 4:
        break #结束整个循环
    count +=1
print(\'End\')

运行结果

continue用于终止本次循环,继续进行下一轮循环

 

以上是关于Python循环-break和continue的主要内容,如果未能解决你的问题,请参考以下文章

python break ,continue和 pass 语句

Python基础(循环控制语句break/continue)

python之while与for循环,break与continue

一文了解Python中的循环(for while break continue 嵌套循环...)

Python break 和 continue 语句

8python break continue pass语句