-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathps3_hangman final.py
More file actions
137 lines (115 loc) · 4.41 KB
/
ps3_hangman final.py
File metadata and controls
137 lines (115 loc) · 4.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# 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
WORDLIST_FILENAME = "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')
# line: string
line = inFile.readline()
# wordlist: list of strings
wordlist = line.split()
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
'''
guess = ''
for letter in secretWord:
if letter in lettersGuessed:
guess += letter
return guess == secretWord
# return set(secretWord) <= set(lettersGuessed) # Alternative
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.
'''
guessedWord = ''
for letter in list(secretWord):
if letter in lettersGuessed:
guessedWord += letter
else:
guessedWord += '_ '
return guessedWord
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.
'''
import string
availableLetters = []
for letter in string.ascii_lowercase:
if letter not in lettersGuessed:
availableLetters.append(letter)
return ''.join(availableLetters)
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.
'''
lettersGuessed = []
mistakesMade = 0
print("Welcome to the game, Hangman!\n"
"I am thinking of a word that is " + str(len(secretWord)) + " letters long.\n"
"-------------")
while mistakesMade < 8:
print("You have " + str(8-mistakesMade) + " guesses left.\n"
"Available letters: " + getAvailableLetters(lettersGuessed))
guess = input("Please guess a letter: ")
guess = guess.lower()
if guess in lettersGuessed:
print("Oops! You've already guessed that letter: " + getGuessedWord(secretWord, lettersGuessed))
else:
lettersGuessed.append(guess)
if guess in secretWord:
print("Good guess: " + getGuessedWord(secretWord, lettersGuessed))
else:
mistakesMade += 1
print("Oops! That letter is not in my word: " + getGuessedWord(secretWord, lettersGuessed))
print("-------------")
if isWordGuessed(secretWord, lettersGuessed):
print("Congratulations, you won!")
break
if mistakesMade == 8:
print("Sorry, you ran out of guesses. The word was " + str(secretWord) + ".")
secretWord = 'hahn'
hangman(secretWord)