美文网首页
Python for else

Python for else

作者: 欢喜明 | 来源:发表于2018-05-06 21:24 被阅读0次

记录:

for i in range(3):

    print(i)

else:

    print('else')

结果:

0

1

2

else

for i in range(3):

    print(i)

    break

else:

    print('else')

结果:

0

解释:

只有循环完所有次数,即是for正常结束(有continue也是正常的)才会执行 else ;

break 可以阻止 else 语句块的执行,因为不是正常循环结束;

相关文章

网友评论

      本文标题:Python for else

      本文链接:https://www.haomeiwen.com/subject/gfhprftx.html