标签:bre 数字 conf -- while 计数 count put tin
猜数字程序:
#Author:Mego
age_mego =30
count =0
while count <3:
guess_age =int(input("请输入想猜的数字:"))
if guess_age==age_mego:
print("输入的数字正确!")
break
elif guess_age > age_mego:
print("输入的数字大了")
else:
print("输入的数字太小!")
count +=1
#输入三不正确,重置计数器
if count ==3:
countine_confirm=input(你是否还想继续输入:")
if countine_confirm !=‘n‘:
count =0
Python自动化3.0-------学习之路-------while循环(猜字游戏)!
标签:bre 数字 conf -- while 计数 count put tin
原文地址:http://www.cnblogs.com/matang/p/7221306.html