6.00.1x python ps3 guess word

# 6.00 Problem Set 3
# 
# Hangman game
#

# -----------------------------------
# Helper code
# You don't need to understand this helper code,
# but you will have to know how to use the functions
# (so be sure to read the docstrings!)

import random
import string

WORDLIST_FILENAME = 'C:/Users/Administrator/6.00.1xFiles/words.txt'

def loadWords():
    """
    Returns a list of valid words. Words are strings of lowercase letters.
    
    Depending on the size of the word list, this function may
    take a while to finish.
    """
    print "Loading word list from file..."
    # inFile: file
    inFile = open(WORDLIST_FILENAME, 'r', 0)
    # line: string
    line = inFile.readline()
    # wordlist: list of strings
    wordlist = string.split(line)
    print "  ", len(wordlist), "words loaded."
    return wordlist

def chooseWord(wordlist):
    """
    wordlist (list): list of words (strings)

    Returns a word from wordlist at random
    """
    return random.choice(wordlist)

# end of helper code
# -----------------------------------

# Load the list of words into the variable wordlist
# so that it can be accessed from anywhere in the program
wordlist = loadWords()

def isWordGuessed(secretWord, lettersGuessed):
    '''
    secretWord: string, the word the user is guessing
    lettersGuessed: list, what letters have been guessed so far
    returns: boolean, True if all the letters of secretWord are in lettersGuessed;
      False otherwise
    '''
    # FILL IN YOUR CODE HERE...
    #secretWord=random.choice(wordlist)
    j=0
    num=0
    for i in range(len(secretWord)):
        j+=1
        char=secretWord[i:j]
        if char in str(lettersGuessed):
            num+=1            
        else:
            num-=1
    return num==len(secretWord)

    



def getGuessedWord(secretWord, lettersGuessed):
    '''
    secretWord: string, the word the user is guessing
    lettersGuessed: list, what letters have been guessed so far
    returns: string, comprised of letters and underscores that represents
      what letters in secretWord have been guessed so far.
    '''
    # FILL IN YOUR CODE HERE...
    j=0
    astring=''
    for i in range(len(secretWord)):
        j+=1
        char=secretWord[i:j]
        if char in str(lettersGuessed):
            astring+=char           
        else:
            astring+='_'
    return astring



def getAvailableLetters(lettersGuessed):
    '''
    lettersGuessed: list, what letters have been guessed so far
    returns: string, comprised of letters that represents what letters have not
      yet been guessed.
    '''
    # FILL IN YOUR CODE HERE...
    letters='abcdefghijklmnopqrstuvwxyz'
    j=0
    astring=''
    for i in range(len(letters)):
        j+=1
        char=letters[i:j]
        if char in str(lettersGuessed):
            astring+=''           
        else:
            astring+=char
    return astring
    


    




def hangman(secretWord):
    '''
    secretWord: string, the secret word to guess.

    Starts up an interactive game of Hangman.

    * At the start of the game, let the user know how many 
      letters the secretWord contains.

    * Ask the user to supply one guess (i.e. letter) per round.

    * The user should receive feedback immediately after each guess 
      about whether their guess appears in the computers word.

    * After each round, you should also display to the user the 
      partially guessed word so far, as well as letters that the 
      user has not yet guessed.

    Follows the other limitations detailed in the problem write-up.
    '''
    # FILL IN YOUR CODE HERE...
    lettersGuessed=''
    print 'Welcome to the game, Hangman!'
    print 'I am thinking of a word that is '+str(len(secretWord))+' letters long.'   
    count=8
    char=''
    while count>0:
        if count>0:
            print '------------------'
            print 'You have '+str(count)+ ' guesses left.'
            print 'Available letters: '+getAvailableLetters(lettersGuessed)
            char=str(raw_input('Please guess a letter: ')).lower()
            if char in getAvailableLetters(lettersGuessed):
                lettersGuessed+=char
                if isWordGuessed(char,secretWord):
                    print 'Good guess:'+getGuessedWord(secretWord, lettersGuessed)
                    if '_' not in getGuessedWord(secretWord, lettersGuessed):                 
                        print'--------------'
                        print 'Congratulations, you won!'
                        break
                else:
                    count-=1
                    print 'Oops! That letter is not in my word: '+getGuessedWord(secretWord, lettersGuessed)
            else:
                print "Oops! You've already guessed that letter: " +getGuessedWord(secretWord, lettersGuessed)
    if count==0:
        print'------------------------------'
        print 'Sorry, you ran out of guesses. The word was else.'
           
 


# When you've completed your hangman function, uncomment these two lines
# and run this file to test! (hint: you might want to pick your own
# secretWord while you're testing)

# secretWord = chooseWord(wordlist).lower()
# hangman(secretWord)
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值