用python 制作剪刀石头布小游戏
时间: 2023-06-22 12:34:57 浏览: 101
好的,这是一个简单的剪刀石头布小游戏的 Python 代码:
```python
import random
print("欢迎来到剪刀石头布游戏!")
print("请输入您的选择:剪刀(0)、石头(1)、布(2)")
while True:
# 玩家出拳
player = int(input())
if player not in [0, 1, 2]:
print("输入无效,请重新输入!")
continue
# 电脑出拳
computer = random.randint(0, 2)
# 判断胜负
if player == computer:
print("平局!")
elif player == 0 and computer == 2:
print("你赢了!")
elif player == 1 and computer == 0:
print("你赢了!")
elif player == 2 and computer == 1:
print("你赢了!")
else:
print("你输了!")
# 询问是否继续游戏
print("是否继续游戏?是(Y),否(N)")
choice = input()
if choice.upper() != "Y":
print("游戏结束,谢谢参与!")
break
```
运行该代码后,你可以输入 0、1 或 2 来选择剪刀、石头或布,电脑会随机出拳,并判断胜负。最后会询问是否继续游戏,如果选择“是”,则可以继续玩,否则游戏结束。
阅读全文