Python小游戏160行代码
时间: 2023-11-21 14:58:16 浏览: 119
Python小游戏代码
这里是一个简单的猜数字小游戏,只需要160行Python代码:
```python
import random
def game():
secret_num = random.randint(1, 100)
num_guesses = 0
while True:
guess = int(input("Guess a number between 1 and 100: "))
num_guesses += 1
if guess == secret_num:
print("Congratulations! You guessed the secret number in", num_guesses, "guesses!")
break
elif guess > secret_num:
print("Too high! Try again.")
else:
print("Too low! Try again.")
game()
```
这个游戏会在1到100之间随机生成一个数字,你需要猜测这个数字是多少。程序会告诉你你的猜测是太高还是太低,直到你猜对为止。最后程序会告诉你你猜了多少次才猜对。
阅读全文