pycharm写猜拳小游戏
时间: 2023-07-08 15:54:44 浏览: 167
Sudoku,ChromeDragon,FlippyBird,YummySnake
好的,下面是一个简单的猜拳小游戏的代码:
```python
import random # 导入random模块
print("欢迎来到猜拳游戏!")
while True:
print("请出拳:1.石头 2.剪刀 3.布")
user_choice = int(input()) # 获取用户输入
# 判断用户输入是否合法
if user_choice < 1 or user_choice > 3:
print("输入有误,请重新输入!")
continue
# 计算机随机出拳
computer_choice = random.randint(1, 3)
# 输出猜拳结果
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("很遗憾,你输了!")
# 询问用户是否继续游戏
print("是否继续游戏?(y/n)")
choice = input()
if choice == 'n':
break
print("游戏结束,谢谢参与!")
```
这个小游戏的思路很简单,首先输出欢迎语句,然后进入一个无限循环,每次循环中让用户出拳(通过输入数字1、2、3来表示出石头、剪刀、布),计算机随机出拳,比较两者的出拳结果,输出胜负信息。最后询问用户是否继续游戏,如果选择退出,则跳出循环,输出结束语句,游戏结束。
阅读全文