p y t hon猜数字游戏代码
时间: 2024-10-09 20:06:34 浏览: 33
Python猜数字游戏是一个经典的编程练习,通常用于教学基本的用户输入、随机数生成和条件判断。下面是一个简单的猜数字游戏示例:
```python
import random
def guess_number_game():
number_to_guess = random.randint(1, 100)
attempts = 0
print("欢迎来到猜数字游戏!我想了一个1到100之间的整数,你有6次机会猜出它.")
while attempts < 6:
user_guess = int(input("请输入你的猜测: "))
attempts += 1
if user_guess < number_to_guess:
print("太小了,再试一次.")
elif user_guess > number_to_guess:
print("太大了,再试一次.")
else:
print(f"恭喜你,猜对了!你用了{attempts}次尝试.")
break
if attempts == 6:
print("很遗憾,你没能在规定的次数内猜到,正确的数字是", number_to_guess)
guess_number_game()
```
在这个游戏中,程序会随机选择一个1到100的数字,然后让用户最多尝试六次猜测。如果玩家猜对了,游戏结束;如果六次都未猜对,就显示正确的数字。
阅读全文