Python实现的简单hangman游戏实例


Posted in Python onJune 28, 2015

本文实例讲述了Python实现的简单hangman游戏。分享给大家供大家参考。具体如下:

#!/usr/bin/env python
import random 
import cPickle 
class Hangman(object):
  '''A simple hangman game that tries to improve your vocabulary a bit '''
  def __init__(self):
    # the variables used, this is not necessary
    self.dumpfile = ''    #the dictionary file
    self.dictionary = {}   #the pickled dict
    self.words = []     #list of words used
    self.secret_word = ''  #the 'key'
    self.length = 0     #length of the 'key'
    self.keys = []      #inputs that match the 'key'
    self.used_keys = []   #keys that are already used
    self.guess = ''     #player's guess
    self.mistakes = 0    #number of incorrect inputs
    return self.load_dict()
  #insert some random hints for the player
  def insert_random(self, length):
    randint = random.randint
    # 3 hints
    if length >= 7: hint = 3
    else: hint = 1
    for x in xrange(hint):
        a = randint(1, length - 1)
        self.keys[a-1] = self.secret_word[a-1]
  def test_input(self):
    #if the guessed letter matches
    if self.guess in self.secret_word:
      indexes = [i for i, item in enumerate(self.secret_word) if item == self.guess]
      for index in indexes:
        self.keys[index] = self.guess
        self.used_keys.append(self.guess)
        print "used letters ",set(self.used_keys),'\n'
    #if the guessed letter didn't match
    else:
      self.used_keys.append(self.guess)
      self.mistakes += 1
      print "used letters ",set(self.used_keys),'\n'
  # load the pickled word dictionary and unpickle them  
  def load_dict(self):
    try :
      self.dumpfile = open("~/python/hangman/wordsdict.pkl", "r")
    except IOError:
      print "Couldn't find the file 'wordsdict.pkl'"
      quit()
    self.dictionary = cPickle.load(self.dumpfile)
    self.words = self.dictionary.keys()
    self.dumpfile.close()
    return self.prepare_word()
  #randomly choose a word for the challenge
  def prepare_word(self):
    self.secret_word = random.choice(self.words)
    #don't count trailing spaces
    self.length = len(self.secret_word.rstrip())
    self.keys = ['_' for x in xrange(self.length)]
    self.insert_random(self.length)
    return self.ask()
  #display the challenge
  def ask(self):
    print ' '.join(self.keys), ":", self.dictionary[self.secret_word] 
    print 
    return self.input_loop()
  #take input from the player
  def input_loop(self):
    #four self.mistakes are allowed
    chances = len(set(self.secret_word)) + 4     
    while chances != 0 and self.mistakes < 5:
      try:
        self.guess = raw_input("> ")
      except EOFError:
        exit(1)
      self.test_input()
      print ' '.join(self.keys)
      if '_' not in self.keys:
        print 'well done!'
        break
      chances -= 1
    if self.mistakes > 4: print 'the word was', ''.join(self.secret_word).upper()
    return self.quit_message()
  def quit_message(self):
    print "\n"
    print "Press 'c' to continue, or any other key to quit the game. "
    print "You can always quit the game by pressing 'Ctrl+D'"
    try:
      command = raw_input('> ')
      if command == 'c': return self.__init__() #loopback
      else : exit(0)
    except EOFError: exit(1)
if __name__ == '__main__':
  game = Hangman()
  game.__init__()

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python中无限元素列表的实现方法
Aug 18 Python
Python批量转换文件编码格式
May 17 Python
详解Numpy中的广播原则/机制
Sep 20 Python
解决Django 在ForeignKey中出现 non-nullable field错误的问题
Aug 06 Python
python中time库的实例使用方法
Oct 31 Python
Django自定义用户表+自定义admin后台中的字段实例
Nov 18 Python
Python3 Tkinkter + SQLite实现登录和注册界面
Nov 19 Python
python+selenium+PhantomJS抓取网页动态加载内容
Feb 25 Python
解决Keras中循环使用K.ctc_decode内存不释放的问题
Jun 29 Python
Python爬虫获取豆瓣电影并写入excel
Jul 31 Python
python实现梯度下降算法的实例详解
Aug 17 Python
如何使用python-opencv批量生成带噪点噪线的数字验证码
Dec 21 Python
python实现矩阵乘法的方法
Jun 28 #Python
python实现的用于搜索文件并进行内容替换的类实例
Jun 28 #Python
python实现简单ftp客户端的方法
Jun 28 #Python
基于进程内通讯的python聊天室实现方法
Jun 28 #Python
python实现的简单RPG游戏流程实例
Jun 28 #Python
python实现自动登录人人网并采集信息的方法
Jun 28 #Python
Python实现将绝对URL替换成相对URL的方法
Jun 28 #Python
You might like
使用Sphinx对索引进行搜索
2013/06/25 PHP
zend framework重定向方法小结
2016/05/28 PHP
PHP标准库(PHP SPL)详解
2019/03/16 PHP
js脚本学习 比较实用的基础
2006/09/07 Javascript
用js实现键盘方向键翻页功能的代码
2007/06/03 Javascript
JavaScript高级程序设计 阅读笔记(十七) js事件
2012/08/14 Javascript
SeaJS入门教程系列之使用SeaJS(二)
2014/03/03 Javascript
基于JavaScript实现瀑布流布局(二)
2016/01/26 Javascript
微信小程序 闭包写法详细介绍
2016/12/14 Javascript
javascript读取文本节点方法小结
2016/12/15 Javascript
Vue.js中用webpack合并打包多个组件并实现按需加载
2017/02/17 Javascript
微信小程序 判断手机号的实现代码
2017/04/19 Javascript
小程序和web画三角形实现解析
2019/09/02 Javascript
vue+element表格导出为Excel文件
2019/09/26 Javascript
浅谈vue项目用到的mock数据接口的两种方式
2019/10/09 Javascript
vue 实现 rem 布局或vw 布局的方法
2019/11/13 Javascript
如何基于JavaScript判断图片是否加载完成
2019/12/28 Javascript
微信小程序实现一个简单swiper代码实例
2019/12/30 Javascript
vue element table中自定义一些input的验证操作
2020/07/18 Javascript
vue 防止页面加载时看到花括号的解决操作
2020/11/09 Javascript
JS实现纸牌发牌动画
2021/01/19 Javascript
JavaScript实现筛选数组
2021/03/02 Javascript
python解析xml文件操作实例
2014/10/05 Python
通过代码实例展示Python中列表生成式的用法
2015/03/31 Python
Python环境变量设置方法
2016/08/28 Python
python算法表示概念扫盲教程
2017/04/13 Python
Python实现扩展内置类型的方法分析
2017/10/16 Python
Hudson Jeans官网:高级精制牛仔裤
2018/11/28 全球购物
什么是GWT的Entry Point
2013/08/16 面试题
政法大学毕业生自荐信范文
2014/01/01 职场文书
小学毕业感言50字
2014/02/16 职场文书
安全生产责任书范本
2014/04/15 职场文书
2014国庆节幼儿园亲子活动方案
2014/09/16 职场文书
个人承诺书格式范文
2015/04/29 职场文书
被委托人身份证明
2015/08/07 职场文书
如何用JavaScript检测当前浏览器是无头浏览器
2021/04/27 Javascript