博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python简单剪刀石头布编程实例
阅读量:5144 次
发布时间:2019-06-13

本文共 563 字,大约阅读时间需要 1 分钟。

import random# 电脑人随机出拳computer = random.randint(1, 3)user = int(input('请出拳:1/拳头,2/剪刀,3/布'))if computer == 1:    computer = '拳头'elif computer == 2:    computer = '剪刀'else:    computer = '布'if user == 1:    user = '拳头'elif user == 2:    user = '剪刀'else:    user = '布'print('电脑人出的是%s,用户出的是%s' % (computer, user))if ((user == 1 and computer == 2)        or (user == 2 and computer == 3)        or (user == 3 and computer == 1)):    print('用户胜出~_~')elif user == computer:    print('好吧,平局@_@')else:    print('电脑胜出!')

  

转载于:https://www.cnblogs.com/ptest/p/10178903.html

你可能感兴趣的文章
利用SignalR来同步更新Winfrom
查看>>
java中的静态方法
查看>>
反射机制
查看>>
CocoaPod
查看>>
2011-4-12学习总结
查看>>
【Finish】Python Day 9
查看>>
css3实现漂亮的按钮链接
查看>>
最大矩形面积
查看>>
[python基础] python 2与python 3的区别,一个关于对象的未知的坑
查看>>
BZOJ 1251: 序列终结者 [splay]
查看>>
Enterprise Library 加密应用程序块的设计
查看>>
深度剖析post和get的区别
查看>>
云的世界
查看>>
WPF border属性
查看>>
初识DetNet:确定性网络的前世今生
查看>>
5G边缘网络虚拟化的利器:vCPE和SD-WAN
查看>>
linux下启动tomcat----Cannot find ./catalina.sh
查看>>
MATLAB基础入门笔记
查看>>
进程、线程、应用程序之间的关系
查看>>
20171020java学习总结——execl 批量导入
查看>>