python超级超级简单的猜拳游戏,大佬别进来了
#超级超级超级简单的猜拳游戏,哈哈#导入random模块
import random
#结果为True,一直循环,这个也可以删掉从新运行也行
while True:
#定义玩家出拳序号
player=int(input('请输入,0--石头,1--剪刀,2--布:'))
# 定义电脑随机出拳
computer=random.randint(0,2)
# 判断语句第一个是玩家胜利,第二个是平局,第三个是电脑获胜
if (player==0 and computer==1) or (player==1 and computer==2) or (player==2 and computer==0):
print('恭喜你赢了,小朋友你很厉害啊,敢不敢再来一局啊')
elif player==computer:
print('行,居然跟我打平手,再来')
else:
print('哈哈,认输不认输啊,不服再来一局')
# 循环语句中空行
print()绝对小白一枚学习中,写来巩固一下自己,顺便感受一下发帖的感觉,哈哈
页:
[1]