python for else

Posted

tags:

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

>>> for i in range(0,10):
        if i > 10:
            break;
    else:
        print "hello world";
输出:hello world
>>> for i in range(0,10):
        if i > 5:
            break;
    else:
        print "hello world";
 
没有输出
-------------------
即在for 循环中,如果没有从任何一个break中退出,则会执行和for对应的else
只要从break中退出了,则else部分不执行。

以上是关于python for else的主要内容,如果未能解决你的问题,请参考以下文章

分支和循环

分支和循环

python 这个for循环怎么改

python中for循环的用法

python中for循环语句

python为啥for循环只查到一次数据