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中的五种异常处理机制介绍
Sep 02 Python
Python打印“菱形”星号代码方法
Feb 05 Python
python图书管理系统
Apr 05 Python
Python在for循环中更改list值的方法【推荐】
Aug 17 Python
详解如何为eclipse安装合适版本的python插件pydev
Nov 04 Python
python3+selenium实现qq邮箱登陆并发送邮件功能
Jan 23 Python
对Python中画图时候的线类型详解
Jul 07 Python
Django上线部署之IIS的配置方法
Aug 22 Python
opencv设置采集视频分辨率方式
Dec 10 Python
500行python代码实现飞机大战
Apr 24 Python
利用python对excel中一列的时间数据更改格式操作
Jul 14 Python
Python+OpenCV图像处理—— 色彩空间转换
Oct 22 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
在PHP的图形函数中显示汉字
2006/10/09 PHP
用PHP提取中英文词语以及数字的首字母的方法介绍
2013/04/23 PHP
php小经验:解析preg_match与preg_match_all 函数
2013/06/29 PHP
php 实现进制相互转换
2016/04/07 PHP
如何用JavaScript动态呼叫函数(两种方式)
2013/05/03 Javascript
jquery foreach使用示例
2013/09/12 Javascript
禁止IE用右键的JS代码
2013/12/30 Javascript
js跨域请求的5中解决方式
2015/07/02 Javascript
AngularJS控制器controller正确的通信的方法
2016/01/25 Javascript
早该知道的7个JavaScript技巧
2016/06/21 Javascript
AngularJS 模型详细介绍及实例代码
2016/07/27 Javascript
js 基础篇必看(点击事件轮播图的简单实现)
2016/08/20 Javascript
微信小程序 设置启动页面的两种方法
2017/03/09 Javascript
node.js中fs.stat与fs.fstat的区别详解
2017/06/01 Javascript
js+canvas实现验证码功能
2020/09/21 Javascript
详解Require.js与Sea.js的区别
2018/08/05 Javascript
JavaScript中toLocaleString()和toString()的区别实例分析
2018/08/14 Javascript
vue-router 手势滑动触发返回功能
2018/09/30 Javascript
Vue发布项目实例讲解
2019/07/17 Javascript
vuex vue简单使用知识点总结
2019/08/29 Javascript
Node.js API详解之 dns模块用法实例分析
2020/05/15 Javascript
jquery实现有过渡效果的tab切换
2020/07/17 jQuery
[47:38]Optic vs VGJ.S 2018国际邀请赛小组赛BO2 第二场 8.17
2018/08/20 DOTA
[43:03]完美世界DOTA2联赛PWL S2 PXG vs Magma 第二场 11.21
2020/11/24 DOTA
Python两个整数相除得到浮点数值的方法
2015/03/18 Python
python处理二进制数据的方法
2015/06/03 Python
Python常用的爬虫技巧总结
2016/03/28 Python
使用Python从零开始撸一个区块链
2018/03/14 Python
举例讲解Python常用模块
2019/03/08 Python
Python实现截取PDF文件中的几页代码实例
2019/03/11 Python
anaconda中更改python版本的方法步骤
2019/07/14 Python
canvas学习笔记之绘制简单路径
2019/01/28 HTML / CSS
Raleigh兰令自行车美国官网:英国凤头牌自行车
2018/01/08 全球购物
农村党员学习党的群众路线教育实践活动心得体会
2014/11/04 职场文书
关于感谢信的范文
2015/01/23 职场文书
Python安装使用Scrapy框架
2022/04/12 Python