Python 基础学习之–猜拳游戏
"""
1. 出拳 石头,剪刀,布
玩家:手动输入
电脑:1.固定:剪刀 2.随机
2. 判断输赢
2.1 玩家获胜
2.2 平局
2.3 电脑获胜
"""
#引入随机整数模块
import random
# 玩家手动输入
player = int(input('请输入 0-石头,1-剪刀,2-布:'))
# 电脑随机生成
computer = random.randint(0, 2)
# 判断玩家是否赢
if (player==0 and 1) or (player==1 and 2) or (player==2 and 0):
print(f'玩家出的是{player}获胜,电脑出的是{computer}哈哈哈')
# 判断平局
elif player == computer:
print(f'平局电脑是{computer},玩家是{player}')
else:
print('电脑获胜')
阅读剩余
版权声明:
作者:zhangyin
链接:https://blog.zhangyin.net/598.html
文章版权归作者所有,未经允许请勿转载。
THE END