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

1.输出1-100数字的几种方法

时间:2019-06-14 13:00:11      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:str   python   strong   输出   lse   class   int   方法   print   

1)

count = 1
flag = True
#标志位
while flag:
	print(count)
	count = count + 1
	if count > 100 :
		flag = False

 2) 

count = 1
while count <= 100:
	print(count)
	count = count + 1

  

1.输出1-100数字的几种方法

标签:str   python   strong   输出   lse   class   int   方法   print   

原文地址:https://www.cnblogs.com/zhc1654094124/p/11022317.html

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