剪刀石头布的游戏 random中randint的用法

#-*- cording: utf-8 -*-
from random import randint
player = int(input("0为剪刀 1为拳头 2为布"))
computer = randint(0,2)

if (player == "0" and computer == "2") or (player == "1" and computer =="0") or (player == "2" and computer == "0"):
    print("你赢了")
elif player == computer:
    print("平局")
else:
    print("你输了!")

random模块中randint的用法是()中输入数字,会随机出现其中的数字。

posted @ 2018-08-04 22:53  zmwzmw  阅读(981)  评论(0编辑  收藏  举报