Python学习——猜拳小游戏

import random

player = int(input("请输入:剪刀 0,石头 1,布2"))

computer = random.randint(0,2)# print("玩家输入的是%d,电脑输入的是%d" %(player,computer)) 用于测试

if (player == 0) and (computer == 0) or (player == 1) and (computer == 1) or (player == 2) and (computer == 2):

print("平局,继续决战到天亮")

elif (player == 0) and (computer == 1) or (player == 1) and (computer == 2) or (player == 2) and (computer == 1):

print ("输了,要加油")

else:

print ("赢了,太厉害")

相关推荐
Simulink_23 分钟前
ROS学习笔记15——Xacro
linux·笔记·学习·机器人·ros
雯0609~1 小时前
c#:winform调用bartender实现打印(学习整理笔记)
开发语言·c#
2301_775281191 小时前
当日本人说「お疲れ様」时,该怎么回?柯桥日语培训零基础学习
学习
E___V___E2 小时前
CSAPP学习
学习
胜天半子_王二_王半仙2 小时前
c++源码阅读__smart_ptr__正文阅读
开发语言·c++·开源
沐泽Mu2 小时前
嵌入式学习-C嘎嘎-Day08
开发语言·c++·算法
Non importa2 小时前
汉诺塔(hanio)--C语言函数递归
c语言·开发语言·算法·学习方法
LinuxST2 小时前
27、基于Firefly-rk3399中断休眠唤醒实验(按键中断)
linux·开发语言·stm32·嵌入式硬件
跳动的梦想家h2 小时前
黑马点评 秒杀下单出现的问题:服务器异常---java.lang.NullPointerException: null(已解决)
java·开发语言·redis