首页 > 其他 > 详细

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

时间:2018-08-05 00:03:17      阅读:133      评论:0      收藏:0      [点我收藏+]
#-*- 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的用法是()中输入数字,会随机出现其中的数字。

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

原文:https://www.cnblogs.com/zmw-1997/p/9420496.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!