# -*- codring = utf-8 -*-
# @Time : 2021/1/17 19:54
# @Author : 史慧萍
# @File : 石头剪刀布.py
# @Software: PyCharm
import random
a=input("请输入:剪刀(0)、石头(1)、布(2):")
a=int(a)
x=random.randint(0,2)
print("随机生成数字:")
print(x)
if (a==1and x==0)or(a==0and x==2)or(a==2and x==0):#所有成功的情况
print("不错不错,你赢了!")
elif(a==x):
print("平局:可以可以,再来!")
else:
print("hhhh,你这不行!")
相关文章
- 12-27一起入门python4之字典
- 12-27python4
- 12-27Python4 - 文件操作
- 12-27Python4
- 12-27python4