9while...else...语句

Posted ludongjun

tags:

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

count = 0

while count <= 5:
    # if count == 3:               #如果有break终止,就不执行,while后面else,
    #     print(‘33333‘)
    #     break
    print(count)
    count += 1

else:
    print(循环正常执行完了)

print(结束循环)

 

以上是关于9while...else...语句的主要内容,如果未能解决你的问题,请参考以下文章

[AndroidStudio]_[初级]_[配置自动完成的代码片段]

[AndroidStudio]_[初级]_[配置自动完成的代码片段]

[AndroidStudio]_[初级]_[配置自动完成的代码片段]

20个简洁的 JS 代码片段

20个简洁的 JS 代码片段

Microsoft SQL Server 代码片段收集