用while循环写猜年龄以及优化版

本文介绍了一个使用Python编写的简单猜年龄游戏程序。该游戏允许玩家猜测预设的年龄值,并根据玩家输入提供反馈,提示玩家猜得过大或过小。为增加挑战性,程序限制玩家最多只能猜三次。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

增加:1、循环猜,2、最多猜3次,3、超过3次输出猜次数过多:

 

age_of_XueKe=18

count=0
while True:
if count==3:
break
age = int(input("age:"))
if age == age_of_XueKe:
print("Yes,you got it!")
break
elif age >age_of_XueKe:
print("Think smaller!")
else:
print("Think bigger!")
count=count+1
if count==3:
print("You have tried too many times...")

优化版:

age_of_XueKe=18

count=0
while count<3:
age = int(input("age:"))
if age == age_of_XueKe:
print("Yes,you got it!")
break
elif age >age_of_XueKe:
print("Think smaller!")
else:
print("Think bigger!")
count=count+1
else:
print("You have tried too many times...")

转载于:https://www.cnblogs.com/shmilymima/p/9265542.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值