-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hangman.py
335 lines (281 loc) · 12.1 KB
/
Hangman.py
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
# Problem Set 2, hangman.py
# Name: Amirali Malekani Nezhad
# Collaborators: Me, Myself and I
# Hangman Game
# -----------------------------------
# Helper code
import random
import string
WORDLIST_FILENAME = "words.txt"
def load_words():
"""
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 choose_word(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 = load_words()
def is_word_guessed(secret_word, letters_guessed):
"""
secret_word: string, the word the user is guessing; assumes all letters are
lowercase
letters_guessed: list (of letters), which letters have been guessed so far;
assumes that all letters are lowercase
returns: boolean, True if all the letters of secret_word are in letters_guessed;
False otherwise
"""
for char in secret_word:
if (char in letters_guessed) == False:
guessed = False
break
else:
guessed = True
return guessed
def get_guessed_word(secret_word, letters_guessed):
"""
secret_word: string, the word the user is guessing
letters_guessed: list (of letters), which letters have been guessed so far
returns: string, comprised of letters, underscores (_), and spaces that represents
which letters in secret_word have been guessed so far.
"""
correct_letters = [] # used to store the correct letters
guessed_string = "" # the value that is returned
# if a guessed letter is in the secret word, then store that letter in the correct_letters list
for item in letters_guessed:
if item in secret_word:
correct_letters.append(item)
# for each letter in the secret word, if it's been guessed, display it in the guessed_string, otherwise display "_ "
for char in secret_word:
if char in correct_letters:
guessed_string += char
else:
guessed_string += "_ "
return guessed_string
def get_available_letters(letters_guessed):
"""
letters_guessed: list (of letters), which letters have been guessed so far
returns: string (of letters), comprised of letters that represents which letters have not
yet been guessed.
"""
list_of_all_letters = []
str = ""
all_letters = string.ascii_lowercase
for i in range(len(all_letters)):
list_of_all_letters.append(all_letters[i])
def Diff(li1, li2):
return sorted(list(set(li1) - set(li2)) + list(set(li2) - set(li1)))
return (str.join(Diff(list_of_all_letters, letters_guessed)))
def hangman(secret_word):
"""
secret_word: 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 secret_word contains and how many guesses s/he starts with.
* The user should start with 6 guesses
* Before each round, you should display to the user how many guesses
s/he has left and the letters that the user has not yet guessed.
* Ask the user to supply one guess per round. Remember to make
sure that the user puts in a letter!
* The user should receive feedback immediately after each guess
about whether their guess appears in the computer's word.
* After each guess, you should display to the user the
partially guessed word so far.
Follows the other limitations detailed in the problem write-up.
"""
letters_guessed = []
number_of_guesses = 6
number_of_warnings = 3
list_of_vowels = ["a","e","i","o","u"]
list_of_unique_chars = list(set(secret_word))
print("Welcome to the Hangman game!")
print("I am thinking about a word with " + str(len(secret_word)) + " letters.")
print("-------------")
print("You have " + str(number_of_guesses) + " guesses, choose wisely!")
print(get_available_letters(letters_guessed))
while number_of_guesses > 0:
if not len(letters_guessed) == 0:
if is_word_guessed(secret_word, letters_guessed)==True:
print("You have won! Congrats! The word was " + secret_word + ". Play again soon!")
total_score = (number_of_guesses)*(len(list_of_unique_chars))
print("Your total score is " + str(total_score) + ".")
break
print(get_guessed_word(secret_word, letters_guessed))
print("You have " + str(number_of_guesses) + " guesses remaining.")
print("You have " + str(number_of_warnings) + " warnings remaining")
print("Letters remaining are : " + get_available_letters(letters_guessed))
inputted = str(input("Please enter a letter : ")).lower()
while not inputted.isalpha() and len(inputted)==1:
number_of_warnings-=1
print("Please input a valid letter")
inputted=str(input()).lower()
if inputted.isalpha():
break
if number_of_warnings==0:
number_of_guesses-=1
if inputted in letters_guessed:
if number_of_warnings == 0:
number_of_guesses -= 1
else:
number_of_warnings-=1
continue
else:
letters_guessed.append(inputted)
if inputted in secret_word:
print("Nice guess!")
continue
else:
if inputted in list_of_vowels :
number_of_guesses-=2
else :
number_of_guesses -= 1
print("Ooh try again.")
if is_word_guessed(secret_word, letters_guessed) == False:
print("Oh tough luck! The word was + " + secret_word + ". Better luck next time!")
# When you've completed your hangman function, scroll down to the bottom
# of the file and uncomment the first two lines to test
# (hint: you might want to pick your own
# secret_word while you're doing your own testing)
# -----------------------------------
def match_with_gaps(my_word, other_word):
"""
my_word: string with _ characters, current guess of secret word
other_word: string, regular English word
returns: boolean, True if all the actual letters of my_word match the
corresponding letters of other_word, or the letter is the special symbol
_ , and my_word and other_word are of the same length;
False otherwise:
"""
my_word = my_word.replace(" ", "")
other_word = other_word.replace(" ", "")
checked_chars = []
if not len(my_word) == len(other_word):
return False
else:
for j in range(len(my_word)):
if my_word[j] == other_word[j]:
val = True
checked_chars.append(my_word[j])
elif my_word[j] == "_" and other_word[j] in checked_chars:
val = False
break
elif my_word[j] == "_":
continue
else:
val = False
break
return val
def show_possible_matches(my_word):
"""
my_word: string with _ characters, current guess of secret word
returns: nothing, but should print out every word in wordlist that matches my_word
Keep in mind that in hangman when a letter is guessed, all the positions
at which that letter occurs in the secret word are revealed.
Therefore, the hidden letter(_ ) cannot be one of the letters in the word
that has already been revealed.
"""
list_of_matches = []
for i in range(len(wordlist)):
if match_with_gaps(my_word,wordlist[i]) == True:
list_of_matches.append(wordlist[i])
if len(list_of_matches)==0:
print("No matches found.")
else:
print(', '.join(list_of_matches))
def hangman_with_hints(secret_word):
"""
secret_word: 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 secret_word contains and how many guesses s/he starts with.
* The user should start with 6 guesses
* Before each round, you should display to the user how many guesses
s/he has left and the letters that the user has not yet guessed.
* Ask the user to supply one guess per round. Make sure to check that the user guesses a letter
* The user should receive feedback immediately after each guess
about whether their guess appears in the computer's word.
* After each guess, you should display to the user the
partially guessed word so far.
* If the guess is the symbol *, print out all words in wordlist that
matches the current guessed word.
Follows the other limitations detailed in the problem write-up.
"""
letters_guessed = []
number_of_guesses = 6
number_of_warnings = 3
list_of_vowels = ["a", "e", "i", "o", "u"]
current_guess = ""
list_of_unique_chars = list(set(secret_word))
print("Welcome to the Hangman game!")
print("I am thinking about a word with " + str(len(secret_word)) + " letters.")
print("-------------")
print("You have " + str(number_of_guesses) + " guesses, choose wisely!")
print(get_available_letters(letters_guessed))
while number_of_guesses > 0:
if not len(letters_guessed) == 0:
if is_word_guessed(secret_word, letters_guessed) == True:
print("You have won! Congrats! The word was " + secret_word + ". Play again soon!")
total_score = number_of_guesses * (len(list_of_unique_chars))
print("Your total score is " + str(total_score) + ".")
break
print(get_guessed_word(secret_word, letters_guessed))
current_guess = get_guessed_word(secret_word, letters_guessed)
print("You have " + str(number_of_guesses) + " guesses remaining.")
print("You have " + str(number_of_warnings) + " warnings remaining")
print("Letters remaining are : " + get_available_letters(letters_guessed))
inputted = str(input("Please enter a letter : ")).lower()
if inputted == "*":
show_possible_matches(current_guess)
else:
while not inputted.isalpha() and len(inputted) == 1:
number_of_warnings -= 1
print("Please input a valid letter")
inputted = str(input()).lower()
if inputted.isalpha():
break
if number_of_warnings == 0:
number_of_guesses -= 1
if inputted in letters_guessed:
if number_of_warnings == 0:
number_of_guesses -= 1
else:
number_of_warnings -= 1
continue
else:
letters_guessed.append(inputted)
if inputted in secret_word:
print("Nice guess!")
continue
else:
if inputted in list_of_vowels:
number_of_guesses -= 2
else:
number_of_guesses -= 1
print("Ooh try again.")
if is_word_guessed(secret_word, letters_guessed) == False:
print("Oh tough luck! The word was " + secret_word + ". Better luck next time!")
# When you've completed your hangman_with_hint function, comment the two similar
# lines above that were used to run the hangman function, and then uncomment
# these two lines and run this file to test!
# Hint: You might want to pick your own secret_word while you're testing.
if __name__ == "__main__":
#secret_word = "babies"
secret_word = random.choice(wordlist)
hangman_with_hints(secret_word)