python笔记(猜拳游戏)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python笔记(猜拳游戏)相关的知识,希望对你有一定的参考价值。

import random

while True :
    computer =random.randint(0,2)
    #print(‘computer---->%d‘%computer)
    player = int(input(‘请选择0,剪刀1,石头,2,布:‘))
    if player<=3:

        if (player==0 and computer==2)or(player==2 and computer==1)or(player==1 and computer==0):
            print(‘你赢了,我随你玩‘)
        elif player == computer:
            print(‘平局,再战300回合‘)
        else:
            
            print(‘你输了,爆你菊花‘)
    else:
        print(‘输入错误‘)


本文出自 “11508612” 博客,谢绝转载!

以上是关于python笔记(猜拳游戏)的主要内容,如果未能解决你的问题,请参考以下文章

python实现猜拳游戏

python实现猜数字和猜拳小游戏

python-训练1_猜拳游戏

Python,while循环小例子--猜拳游戏(三局二胜)

了解python,利用python来制作日常猜拳,猜价小游戏

Python猜拳小游戏