前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python基础学习04(死循环)

python基础学习04(死循环)

作者头像
py3study
发布2020-01-10 11:23:02
1.2K0
发布2020-01-10 11:23:02
举报
文章被收录于专栏:python3python3

 死循环  这里True,代表1是真,0是假 i = 0 while True:   i = i + 1   if i == 50:      print 'I have got to the round 50th!'      continue   if i>70:break   print i  死循环 i = 0 while True:   i = i + 1   if i == 5000000:      print 'I have got to the round 50th!'      break #  if i>70:break #  print i 两种方法打印10000000 方法一 i = 0 while i< 10000000:      i = i + 1      continue print 'I have got to the round',i #     break #  if i>70:break #  print  方法二: 程序走完才走else,不然不走else i = 0 while i< 10000000:      i = i + 1 #     continue else:       print 'I have got to the round',i #     break #  if i>70:break #  print i while和for循环对比(一个道理) i = 0 while i< 10000000:      i = i + 1 #     continue else:       print 'I have got to the round',i #     break #  if i>70:break #  print i for i in range(100):     print i else:     print 'The loop is done!'

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-08-17 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档