while循环猜年龄
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了while循环猜年龄相关的知识,希望对你有一定的参考价值。
age=53
count=0
while count<3:
ages = int(input("请猜年龄:"))
if ages == age:
print("你猜对了!")
break
elif ages < age:
print("你猜的年龄小了!")
else:
print("你猜的年龄大了!")
count+=1
if count==3:
keep_game=input("if you want keep to guessing(输入n退出游戏,其他则继续玩)...?")
if keep_game!="n":
count=0
以上是关于while循环猜年龄的主要内容,如果未能解决你的问题,请参考以下文章