博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python脚本小游戏,剪刀石头布.
阅读量:6678 次
发布时间:2019-06-25

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

coding: utf8

import random

all_choices = ['石头', '剪刀', '布']

win_list = [['石头', '剪刀'], ['剪刀', '布'], ['布', '石头']]
prompt = """(0) 石头
(1) 剪刀
(2) 布
请选择(0/1/2): """
pwin = 0
cwin = 0

while pwin < 2 and cwin < 2:

computer = random.choice(all_choices)
try:
ind = int(raw_input(prompt))
player = all_choices[ind]
except (ValueError, IndexError):
print 'Inavlid input. Try again.'
continue
except (KeyboardInterrupt, EOFError):
print '\nBye-bye'
break

print "Your choice: %s, Computer's choice: %s" % (player, computer)if player == computer:    print '\033[32;1m平局\033[0m'elif [player, computer] in win_list:    pwin += 1    print '\033[31;1mYou WIN!!!\033[0m'else:    cwin += 1    print '\033[31;1mYou LOSE!!!\033[0m'

转载于:https://blog.51cto.com/13434975/2057124

你可能感兴趣的文章
16款最受关注的智能手表 苹果iWatch领衔
查看>>
大数据应用之HBase数据插入性能优化实测教程
查看>>
static_cast ,reinterpret_cast
查看>>
win7 下恢复“经典任务栏”/“快速启动栏”,关闭“窗口自动最大化” -摘自网络...
查看>>
自定义事件
查看>>
Json.Net系列教程 4.Linq To JSON
查看>>
数据结构(c语言版)文摘
查看>>
【转】用SQL实现树的查询
查看>>
绘图 Painter转接口封装的方式
查看>>
linux kill 关闭进程命令
查看>>
百度BAE环境下WordPress搭建过程
查看>>
struct ifreq 获取IP 和mac和修改mac
查看>>
twitter storm源码走读之4 -- worker进程中线程的分类及用途
查看>>
apache + tomcat 集群
查看>>
C# ComboBox自动完成功能的示例
查看>>
VC++6.0和VS2005在编写MFC应用程序时,操作方面的差异
查看>>
从tableview中拖动某个精灵
查看>>
AE读取CAD图层包括注记
查看>>
误区30日谈16-20
查看>>
【ASP.NET Web API教程】6.4 模型验证
查看>>