编写脚本 实现剪刀石头布
时间: 2023-07-12 17:35:51 浏览: 124
python实现石头剪刀布程序
好的,我可以帮你编写一个简单的剪刀石头布游戏脚本。以下是 Python 代码示例:
```python
import random
options = ["剪刀", "石头", "布"]
computer_choice = random.choice(options)
print("欢迎来到剪刀石头布游戏!")
print("请出拳:剪刀、石头、布")
user_choice = input()
print("你出了:" + user_choice)
print("电脑出了:" + computer_choice)
if user_choice == computer_choice:
print("平局!")
elif user_choice == "剪刀" and computer_choice == "布":
print("你赢了!")
elif user_choice == "石头" and computer_choice == "剪刀":
print("你赢了!")
elif user_choice == "布" and computer_choice == "石头":
print("你赢了!")
else:
print("你输了!")
```
这个脚本会随机生成电脑的出拳,然后等待用户输入自己的出拳,最后输出比赛结果。你可以根据需要进行修改和扩展。
阅读全文