码迷,mamicode.com
首页 > 其他好文 > 详细

break和continue的使用

时间:2017-08-18 09:42:59      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:art   使用   一个   else   python   log   ==   sleep   logs   

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的使用

标签:art   使用   一个   else   python   log   ==   sleep   logs   

原文地址:http://www.cnblogs.com/shoujing/p/7387622.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!