python实现猜单词小游戏

yipeiwu_com6年前Python基础

Python初学者小游戏:猜单词,供大家参考,具体内容如下

游戏逻辑:就像我们曾经英语学习机上的小游戏一样,电脑会从事先预置的词库中抽取单词,然后给出单词的字母数量,给定猜解次数,然后让玩家进行猜测,并给出每次猜测的正确字母与错误字母。

涉及知识点:random.randint(),print(),input()(raw_input())

参考实现代码:

#!/usr/bin/python 
# -*- coding: utf-8 -*- 
 
from __future__ import print_function 
import os 
import sys 
import random 
import time 
 
#单词库 
Words = ['apple','pear','banana'] 
 
#单词随机选择函数 
def getRandomWord(): 
  global Words 
  return Words[random.randint(0,len(Words)-1)] 
   
#猜测流程 
def getGuess(): 
  while True: 
    guess = raw_input("Guess the Word: ") 
    for letter in guess: 
      if letter in wrongLetters: 
        print("The char: " + letter + " you have already guessed") 
        continue 
     
    break 
  return guess 
   
#判别显示流程 
def displayGame(secretLetters,wrongLetters,secretWord): 
  global guess 
  global count 
  print("Info: ") 
  for letter in guess: 
    if letter in secretWord: 
      secretLetters += letter 
    else: 
      wrongLetters += letter 
   
  print("SecretLetters: ",end = '') 
  for letter in secretLetters: 
    print(letter,end = ' ') 
  print() 
   
  print("WrongLetters: ",end = '') 
  for letter in wrongLetters: 
    print(letter,end = ' ') 
  print() 
  print("Count: "+str(count)) 
  blanks = '_'*len(secretWord) 
  for i in range(len(guess)): 
    if i >=len(secretWord): 
      break 
    if secretWord[i]==guess[i]: 
      blanks = blanks[:i] + secretWord[i] + blanks[i+1:] 
  print("Word: ",end = '') 
  for i in blanks: 
    print(i,end=" ") 
  print() 
  print() 
   
   
#主流程   
   
secretLetters = '' 
wrongLetters = '' 
secretWord = '' 
guess = "" 
count = 6 
 
os.system('cls') 
secretWord = getRandomWord() 
while True:  
  displayGame(secretLetters,wrongLetters,secretWord) 
  guess = getGuess() 
  if guess == secretWord: 
    print ("You win !") 
    break 
  else: 
    if count <= 0: 
      print("You lose !") 
      break 
    else: 
      count -= 1 
      continue 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持【听图阁-专注于Python设计】。

相关文章

Python中optionParser模块的使用方法实例教程

本文以实例形式较为详尽的讲述了Python中optionParser模块的使用方法,对于深入学习Python有很好的借鉴价值。分享给大家供大家参考之用。具体分析如下: 一般来说,Pyth...

Python文件路径名的操作方法

1 文件路径名操作   对于文件路径名的操作在编程中是必不可少的,比如说,有时候要列举一个路径下的文件,那么首先就要获取一个路径,再就是路径名的一个拼接问题,通过字符串的拼接就可以得到一...

asyncio 的 coroutine对象 与 Future对象使用指南

coroutine 与 Future 的关系 看起来两者是一样的,因为都可以用以下的语法来异步获取结果, result = await future result = await...

Python的垃圾回收机制深入分析

一、概述: Python的GC模块主要运用了“引用计数”(reference counting)来跟踪和回收垃圾。在引用计数的基础上,还可以通过“标记-清除”(mark and swee...

python基于xml parse实现解析cdatasection数据

本文实例讲述了python基于xml parse实现解析cdatasection数据的方法,分享给大家供大家参考。 具体实现方法如下: from xml.dom.minidom im...