编写脚本 要求:猜价格,生成一个随机100以内的随机价格数,提示用户输入价格,猜中退出,猜大提示价格太大,猜小提示价格太小,一共6次机会
时间: 2024-09-16 15:05:35 浏览: 60
编写一个简单的Python脚本可以实现这个猜价格游戏:
```python
import random
def guess_price():
# 生成一个1到100之间的随机整数作为价格
target_price = random.randint(1, 100)
attempts = 6
print("欢迎来到猜价格游戏!你有6次机会猜出一个1到100之间的随机数。")
for i in range(attempts):
guess = int(input(f"请输入第{i+1}次的猜测:"))
if guess == target_price:
print(f"恭喜你,猜对了!答案就是{target_price}。")
break
elif guess < target_price:
print("价格太高了,请再试一次。")
else:
print("价格太低了,请再试一次。")
if guess != target_price and attempts == 6:
print("很遗憾,你没有猜中。正确的数字是{target_price}。")
guess_price()
```
运行这个脚本后,程序会引导玩家通过输入数字来进行猜测,并根据用户的输入提供相应的反馈。如果玩家在六次尝试内没有猜中,游戏会显示正确答案。
阅读全文