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

找一个幸运数

时间:2017-04-07 14:13:26      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:try   print   size   too   guess   any   font   bin   man   

lucky_num =20
input_num=6
guess_count=1
while input_num != lucky_num and guess_count <=3:
print("guess count: %d"%guess_count)
input_num= input("input the guess num:")
if(input_num>lucky_num):
print("the guess num is bigger...")
elif(input_num<lucky_num):
print("thr guess num is smaller...")
guess_count =guess_count + 1
else:
print("Bingo!")
break
else:
print("too many reatrys....")

找一个幸运数

标签:try   print   size   too   guess   any   font   bin   man   

原文地址:http://www.cnblogs.com/alsely/p/6677840.html

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