break和continue的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了break和continue的使用相关的知识,希望对你有一定的参考价值。
break是跳出整个循环,continue是结束本次循环,继续执行下一个循环:
#!/usr/bin/env python # --*-- coding:utf-8 --*-- import time start = 1 while True: print("start:", start) if start == 10: break else: start += 1 if start == 5: start += 1 print("唯独缺少5") continue time.sleep(1) print("=======程序结束=======")
以上是关于break和continue的使用的主要内容,如果未能解决你的问题,请参考以下文章