Question 4. Write a function called word_points that takes a word as a string and outputs the scrabble score of that word. Test your function in the following cell. [101]: def word_points (word): "Takes a word, returns a scrabble score for that word.''' score = return score Input In [101] score = SyntaxError: invalid syntax [102]: ## TESTS These should return True, True, True, True (word_points("a") == 1, word_points ("cab") == 7, word_points ("quadrangle") == 21, word_points("dormancy") == 16, word_points("")== 0) [102] (False, False, False, False, False)

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Please help with 4 and 5.

Question 4. Write a function called word_points that takes a word as a string and outputs the scrabble score of that word. Test your function in the following cell.
[101]: def word_points (word):
"''Takes a word, returns a scrabble score for that word. '''
score =
return score
Input In [101]
score =
SyntaxError: invalid syntax
[102]: ## TESTS These should return True, True, True, True
(word_points ("a")
1, word_points ("cab") == 7, word_points("quadrangle")
word_points("dormancy") 16, word_points("")== 0)
[102] (False, False, False, False, False)
Question 5. The Scrabble game box provides a bag with tiles, with each tile displaying a letter, and some letters are repeated (there are 9 tiles with A, 2 with B, 1 with Z etc). Run
the cell below to obtain the content of that bag. Not all words can be constructed with the provided tiles; for example, you cannot construct the word pizza because there is
only one tile with Z.
Find the ten highest-scoring words not more than 10 letters long that can be built without exceeding the number of tiles of each letter in letter_numbers.
[Hint: for each word you need: (i) its length; (ii) its Scrabble score; (iii) validity (can it be constructed with the provided tiles? Write a function that checks the validity!)]
[41]: # This python dictionary counts the number of tiles in the scrabble box that have each letter:
letter_numbers = { "A":9, "B":2, "C":2, "D":4, "E":12, "F":2, "G":3, "H":2, "I":9, \
[42] # Let us check: how many letter tiles are in the box?
n=0
for letter in letter_numbers.values():
n = n + letter
21,
print (n)
98
[ ]: # your answer here
"J":1, "K":1, "L":4, "M":2, "N":6, "0":8, "P":2, "Q":1, "R":6, \
"S":4, "T":6, "U":4, "V":2, "W":2, "X":1, "Y":2, "Z":1}
Transcribed Image Text:Question 4. Write a function called word_points that takes a word as a string and outputs the scrabble score of that word. Test your function in the following cell. [101]: def word_points (word): "''Takes a word, returns a scrabble score for that word. ''' score = return score Input In [101] score = SyntaxError: invalid syntax [102]: ## TESTS These should return True, True, True, True (word_points ("a") 1, word_points ("cab") == 7, word_points("quadrangle") word_points("dormancy") 16, word_points("")== 0) [102] (False, False, False, False, False) Question 5. The Scrabble game box provides a bag with tiles, with each tile displaying a letter, and some letters are repeated (there are 9 tiles with A, 2 with B, 1 with Z etc). Run the cell below to obtain the content of that bag. Not all words can be constructed with the provided tiles; for example, you cannot construct the word pizza because there is only one tile with Z. Find the ten highest-scoring words not more than 10 letters long that can be built without exceeding the number of tiles of each letter in letter_numbers. [Hint: for each word you need: (i) its length; (ii) its Scrabble score; (iii) validity (can it be constructed with the provided tiles? Write a function that checks the validity!)] [41]: # This python dictionary counts the number of tiles in the scrabble box that have each letter: letter_numbers = { "A":9, "B":2, "C":2, "D":4, "E":12, "F":2, "G":3, "H":2, "I":9, \ [42] # Let us check: how many letter tiles are in the box? n=0 for letter in letter_numbers.values(): n = n + letter 21, print (n) 98 [ ]: # your answer here "J":1, "K":1, "L":4, "M":2, "N":6, "0":8, "P":2, "Q":1, "R":6, \ "S":4, "T":6, "U":4, "V":2, "W":2, "X":1, "Y":2, "Z":1}
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Types of Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education