用python写一个黄金矿工游戏
时间: 2023-06-02 19:04:27 浏览: 598
好的,我可以为您提供关于黄金矿工游戏的代码示例。以下是一个简单的Python程序,可以实现一个基本的黄金矿工游戏:
```python
import random
def play_game():
score = 0
rounds = 5
for round in range(1, rounds+1):
print("Round", round)
gold_amount = random.randint(1, 10)
print("You found {} pieces of gold!".format(gold_amount))
answer = input("Do you want to keep digging? ")
if answer.lower() in ["yes", "y"]:
score += gold_amount
print("Your current score is", score)
else:
print("Game over! Your final score is", score)
break
else:
print("Congratulations! You've completed all {} rounds with a score of {}!".format(rounds, score))
play_game()
```
这个程序通过循环进行5轮游戏,每轮找到随机数量的黄金,然后问玩家是否继续挖掘。如果玩家选择继续,他们的得分将增加所找到的黄金数量。如果玩家选择停止挖掘,游戏结束并计算最终得分。
希望这个示例对您有所帮助!如果您需要更多帮助,请告诉我。
阅读全文