#猜拳

python实现猜拳游戏

importrandom;guess_list=['石头','剪刀','布'];rules=[['石头','剪刀'],['剪刀','布'],['布','石头']];computer=random.choice(guess_list);print(computer);people=input("石头,剪刀,布:").st...
代码星球 ·2020-04-02