1901090022-MIT60001-ProblemSet3(P1)

打卡记录

作业(Problem 1: Word scores):

The first step is to implement a function that calculates the score for a single word. Fill in the code for get_word_score in ps3.py according to the function specifications.

As a reminder, here are the rules for scoring a word:

  • The score for a word is the product of two components:
    • First component: the sum of the points for letters in the word.
    • Second component: either [7 * word_length - 3 * (n-word_length)] or 1, whichever value is greater, where:
      • word_length is the number of letters used in the word
      • n is the number of letters available in the current hand

You should use the SCRABBLE_LETTER_VALUES dictionary defined at the top of ps3.py. Do not assume that there are always 7 letters in a hand! The parameter n is the total number of letters in the hand when the word was entered.

Finally, you may find the str.lower function helpful:

1
2
3
s = “My string”
print(s.lower())
>>>> “my string”

If you don’t know what this does you could try typing help(str.lower) in your Spyder shell to see the documentation for the functions.

作业心得

这里有个2关键点:

  1. [7 * word_length - 3 * (n-word_length)],如果计算值小于0,则 Second component 为1
  2. 一定要认真看 Introduction章节的Scoring部分,从中得知这道题是要计算 First component 和 Second componen 相乘的结果
  3. 要认真看 test_ps3.py 的 test_get_word_score 函数,参考这个函数可以知道如何测试

关键函数的理解

deal_hand(n):
该函数返回一个字典类型数据,包括 ceil(n/3) 个元音和若干个辅音与对应的次数,元音与辅音可重复

update_hand(hand, word):
将存在 hand字典中 key 为 word 的元素删除并返回,但不修改原 hand 变量

学习的新函数:

  • Python ceil 函数:向上取整; ceil()
  • Python choice 函数: 从列表、元组、字符串中随机选择一个元素;choice

程序代码

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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
# 6.0001 Problem Set 3
#
# The 6.0001 Word Game
# Created by: Kevin Luu <luuk> and Jenna Wiens <jwiens>
#
# Name : <your name>
# Collaborators : <your collaborators>
# Time spent : <total time>

import math
import random
import string

VOWELS = 'aeiou'
CONSONANTS = 'bcdfghjklmnpqrstvwxyz'
HAND_SIZE = 7

SCRABBLE_LETTER_VALUES = {
'a': 1, 'b': 3, 'c': 3, 'd': 2, 'e': 1, 'f': 4, 'g': 2, 'h': 4, 'i': 1, 'j': 8, 'k': 5, 'l': 1, 'm': 3, 'n': 1, 'o': 1, 'p': 3, 'q': 10, 'r': 1, 's': 1, 't': 1, 'u': 1, 'v': 4, 'w': 4, 'x': 8, 'y': 4, 'z': 10
}

# -----------------------------------
# Helper code
# (you don't need to understand this helper code)

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')
# wordlist: list of strings
wordlist = []
for line in inFile:
wordlist.append(line.strip().lower())
print(" ", len(wordlist), "words loaded.")
return wordlist

def get_frequency_dict(sequence):
"""
Returns a dictionary where the keys are elements of the sequence
and the values are integer counts, for the number of times that
an element is repeated in the sequence.

sequence: string or list
return: dictionary
"""

# freqs: dictionary (element_type -> int)
freq = {}
for x in sequence:
freq[x] = freq.get(x,0) + 1
return freq


# (end of helper code)
# -----------------------------------

#
# Problem #1: Scoring a word
#
def get_word_score(word, n):
"""
Returns the score for a word. Assumes the word is a
valid word.

You may assume that the input word is always either a string of letters,
or the empty string "". You may not assume that the string will only contain
lowercase letters, so you will have to handle uppercase and mixed case strings
appropriately.

The score for a word is the product of two components:

The first component is the sum of the points for letters in the word.
The second component is the larger of:
1, or
7*wordlen - 3*(n-wordlen), where wordlen is the length of the word
and n is the hand length when the word was played

Letters are scored as in Scrabble; A is worth 1, B is
worth 3, C is worth 3, D is worth 2, E is worth 1, and so on.

word: string
n: int >= 0
returns: int >= 0
"""
word = word.lower()

first_component = 0
for letter in word:
first_component += SCRABBLE_LETTER_VALUES[letter]

second_component = 7 * len(word) - 3 * (n - len(word))
if (second_component < 1):
second_component = 1
return first_component * second_component

# "it" 7*2-3*(7-2) = 14-15 = -1
# "was" 7*3-3*(7-3) = 21-12=9+6
# [7 * word_length - 3 * (n-word_length)]
# pass # TO DO... Remove this line when you implement this function

#
# Make sure you understand how this function works and what it does!
#
def display_hand(hand):
"""
Displays the letters currently in the hand.
显示当前手里的字母

For example:
display_hand({'a':1, 'x':2, 'l':3, 'e':1})
Should print out something like:
a x x l l l e
The order of the letters is unimportant.

hand: dictionary (string -> int)
"""

for letter in hand.keys():
for j in range(hand[letter]):
print(letter, end=' ') # print all on the same line
print() # print an empty line

display_hand({'a':1, 'x':2, 'l':3, 'e':1})

#
# Make sure you understand how this function works and what it does!
# You will need to modify this for Problem #4.
#
def deal_hand(n):
"""
Returns a random hand containing n lowercase letters.
ceil(n/3) letters in the hand should be VOWELS (note,
ceil(n/3) means the smallest integer not less than n/3).

Hands are represented as dictionaries. The keys are
letters and the values are the number of times the
particular letter is repeated in that hand.

n: int >= 0
returns: dictionary (string -> int)
"""

hand={}
num_vowels = int(math.ceil(n / 3))

for i in range(num_vowels):
x = random.choice(VOWELS)
hand[x] = hand.get(x, 0) + 1
for i in range(num_vowels, n):
x = random.choice(CONSONANTS)
hand[x] = hand.get(x, 0) + 1

return hand

#
# Problem #2: Update a hand by removing letters
#
def update_hand(hand, word):
"""
Does NOT assume that hand contains every letter in word at least as
many times as the letter appears in word. Letters in word that don't
appear in hand should be ignored. Letters that appear in word more times
than in hand should never result in a negative count; instead, set the
count in the returned hand to 0 (or remove the letter from the
dictionary, depending on how your code is structured).

Updates the hand: uses up the letters in the given word
and returns the new hand, without those letters in it.

Has no side effects: does not modify hand.

word: string
hand: dictionary (string -> int)
returns: dictionary (string -> int)
"""

pass # TO DO... Remove this line when you implement this function

#
# Problem #3: Test word validity
#
def is_valid_word(word, hand, word_list):
"""
Returns True if word is in the word_list and is entirely
composed of letters in the hand. Otherwise, returns False.
Does not mutate hand or word_list.

word: string
hand: dictionary (string -> int)
word_list: list of lowercase strings
returns: boolean
"""

pass # TO DO... Remove this line when you implement this function

#
# Problem #5: Playing a hand
#
def calculate_handlen(hand):
"""
Returns the length (number of letters) in the current hand.

hand: dictionary (string-> int)
returns: integer
"""

pass # TO DO... Remove this line when you implement this function

def play_hand(hand, word_list):

"""
Allows the user to play the given hand, as follows:

* The hand is displayed.

* The user may input a word.

* When any word is entered (valid or invalid), it uses up letters
from the hand.

* An invalid word is rejected, and a message is displayed asking
the user to choose another word.

* After every valid word: the score for that word is displayed,
the remaining letters in the hand are displayed, and the user
is asked to input another word.

* The sum of the word scores is displayed when the hand finishes.

* The hand finishes when there are no more unused letters.
The user can also finish playing the hand by inputing two
exclamation points (the string '!!') instead of a word.

hand: dictionary (string -> int)
word_list: list of lowercase strings
returns: the total score for the hand

"""

# BEGIN PSEUDOCODE <-- Remove this comment when you implement this function
# Keep track of the total score

# As long as there are still letters left in the hand:

# Display the hand

# Ask user for input

# If the input is two exclamation points:

# End the game (break out of the loop)


# Otherwise (the input is not two exclamation points):

# If the word is valid:

# Tell the user how many points the word earned,
# and the updated total score

# Otherwise (the word is not valid):
# Reject invalid word (print a message)

# update the user's hand by removing the letters of their inputted word


# Game is over (user entered '!!' or ran out of letters),
# so tell user the total score

# Return the total score as result of function



#
# Problem #6: Playing a game
#


#
# procedure you will use to substitute a letter in a hand
#

def substitute_hand(hand, letter):
"""
Allow the user to replace all copies of one letter in the hand (chosen by user)
with a new letter chosen from the VOWELS and CONSONANTS at random. The new letter
should be different from user's choice, and should not be any of the letters
already in the hand.

If user provide a letter not in the hand, the hand should be the same.

Has no side effects: does not mutate hand.

For example:
substitute_hand({'h':1, 'e':1, 'l':2, 'o':1}, 'l')
might return:
{'h':1, 'e':1, 'o':1, 'x':2} -> if the new letter is 'x'
The new letter should not be 'h', 'e', 'l', or 'o' since those letters were
already in the hand.

hand: dictionary (string -> int)
letter: string
returns: dictionary (string -> int)
"""

pass # TO DO... Remove this line when you implement this function


def play_game(word_list):
"""
Allow the user to play a series of hands

* Asks the user to input a total number of hands

* Accumulates the score for each hand into a total score for the
entire series

* For each hand, before playing, ask the user if they want to substitute
one letter for another. If the user inputs 'yes', prompt them for their
desired letter. This can only be done once during the game. Once the
substitue option is used, the user should not be asked if they want to
substitute letters in the future.

* For each hand, ask the user if they would like to replay the hand.
If the user inputs 'yes', they will replay the hand and keep
the better of the two scores for that hand. This can only be done once
during the game. Once the replay option is used, the user should not
be asked if they want to replay future hands. Replaying the hand does
not count as one of the total number of hands the user initially
wanted to play.

* Note: if you replay a hand, you do not get the option to substitute
a letter - you must play whatever hand you just had.


* Returns the total score for the series of hands

word_list: list of lowercase strings
"""

print("play_game not implemented.") # TO DO... Remove this line when you implement this function



#
# Build data structures used for entire session and play game
# Do not remove the "if __name__ == '__main__':" line - this code is executed
# when the program is run directly, instead of through an import statement
#
if __name__ == '__main__':
word_list = load_words()
play_game(word_list)