首页 > 代码库 > python循环打印
python循环打印
1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 # @Time : 2016/10/2 15:47 4 # @Author : Derby 5 # @File : whileloop.py 6 7 count=0 8 while True: 9 count += 110 if count >50 and count<60 :11 continue12 print("你是风儿我是沙,缠缠绵绵到天涯",count )13 ‘‘‘14 else:15 print ("This is a diedloop?",count)16 count += 117 ‘‘‘18 if count==100:19 print("Haha,This is good loop!")20 break
测试另外代码查看方式
方式一:
#!/usr/bin/env python# -*- coding: utf-8 -*-# @Time : 2016/10/2 15:47# @Author : Derby# @File : whileloop.pycount=0while True: count += 1 if count >50 and count<60 : continue print("你是风儿我是沙,缠缠绵绵到天涯",count ) ‘‘‘ else: print ("This is a diedloop?",count) count += 1 ‘‘‘ if count==100: print("Haha,This is good loop!") break
python循环打印
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。