首页 > 代码库 > 【python之路4】循环语句
【python之路4】循环语句
1、while 循环语句
#!/usr/bin/env python # -*- coding:utf-8 -*- import time bol = True while bol: print ‘1‘ time.sleep(1) bol = False print ‘hello,world!‘
2、无限的输出数字
#!/usr/bin/env python # -*- coding:utf-8 -*- import time n = 0 while True: n = n + 1 time.sleep(1) print n
3、打印输出10个数字
#!/usr/bin/env python # -*- coding:utf-8 -*- bol = True n = 0 while bol: n = n + 1 if n == 10: bol = False print n print "end"
4、break退出本循环语句继续向下运行
#!/usr/bin/env python # -*- coding:utf-8 -*- n = 0 while True: n = n + 1 print n if n == 10: break print "end"
【python之路4】循环语句
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。