python打地鼠游戏代码
时间: 2023-10-13 21:26:14 浏览: 83
以下是一个简单的 Python 打地鼠游戏代码:
```python
import random
import time
# 设置游戏时间
game_time = 30
# 初始化分数
score = 0
# 地鼠出现的位置
holes = [" ", " ", " ", " ", " ", " ", " ", " ", " "]
# 游戏开始时间
start_time = time.time()
# 游戏循环
while time.time() - start_time < game_time:
# 随机出现地鼠的位置
hole_index = random.randint(0, 8)
holes[hole_index] = "(OvO)"
print("".join(holes))
holes[hole_index] = " "
# 玩家输入
player_input = input("请输入地鼠出现的位置(1-9):")
# 判断玩家是否击中地鼠
if int(player_input) == hole_index + 1:
score += 1
print("击中!得分 +1,当前得分:", score)
else:
print("未命中,当前得分:", score)
# 游戏结束
print("时间到!游戏结束,总得分:", score)
```
在这个游戏中,玩家需要在规定的时间内尽可能多地击中出现的地鼠,每次命中会得到一分,时间到后会显示总得分。
阅读全文