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

试用博客园编辑器

时间:2018-01-23 16:45:28      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:style   mil   over   image   not   size   文章   alt   bsp   

 
技术分享图片
 1 # guess LuckyNum
 2 # 练习使用if_else语句
 3 # 使用循环语句while
 4 # 与、或、非 and、or、not
 5 
 6 MyLuckNum = 66
 7 NumInput = 0
 8 GuessCount = 5
 9 # while True:
10 while MyLuckNum != NumInput and GuessCount != 0:
11     NumInput = int(input("Please input number (0~100):"))
12     GuessCount -= 1
13     print("GuessCount=", GuessCount)
14 
15     if NumInput <= 100:
16         if NumInput > MyLuckNum:
17             print("the real num is smaller")
18         elif NumInput < MyLuckNum:
19             print("the real num is bigger")
20     else:
21         print("Input Error!")
22 if GuessCount == 0 and MyLuckNum != NumInput:
23     print("time is over!")
24 else:
25     print("bingo!")
View Code

尝试

使用博客园自带编辑器上传文章2018-01-23 15:51:15

 


哈哈

 

博客园

 

技术分享图片

 

试用博客园编辑器

标签:style   mil   over   image   not   size   文章   alt   bsp   

原文地址:https://www.cnblogs.com/BlogOfEr/p/8336234.html

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