随便写一个Python游戏代码
时间: 2024-03-30 17:12:41 浏览: 56
好的,以下是一个简单的石头剪子布游戏的Python代码:
```
import random
print("欢迎来玩石头剪子布游戏!")
print("输入 1 代表石头,2 代表剪子,3 代表布")
while True:
user_choice = int(input("请出拳:"))
while user_choice not in [1, 2, 3]:
user_choice = int(input("请出拳(1, 2 或 3):"))
computer_choice = random.randint(1, 3)
print("电脑出拳:", computer_choice)
if user_choice == computer_choice:
print("平局!")
elif user_choice == 1 and computer_choice == 2 \
or user_choice == 2 and computer_choice == 3 \
or user_choice == 3 and computer_choice == 1:
print("恭喜您!您赢了!")
else:
print("很遗憾,您输了。")
play_again = input("再来一局?(输入 y 或 n):")
if play_again.lower() != "y":
break
print("游戏结束。")
```
希望您喜欢这个游戏!
阅读全文