Answered step by step
Verified Expert Solution
Question
1 Approved Answer
PYTHON- Given a word, compute the scrabble score for that word. Table 1: Letter values Letter Value A, E, I, O, U, L, N, R,
PYTHON-
Given a word, compute the scrabble score for that word.
Table 1: Letter values
Letter Value
A, E, I, O, U, L, N, R, S, T | 1 |
D, G | 2 |
B, C, M, P | 3 |
F, H, V, W, Y | 4 |
K | 5 |
J, X | 8 |
Q, Z | 10 |
Examples: cabbage should be scored as worth 14 points: 3 points for C 1 point for A, twice 3 points for B, twice 2 points for G 1 point for E
And to total: 3 + 2 1 + 2 3 + 2 + 1 = 14 Develop a function called score that accepts one argument, which is a string word. The function should return the scrabble score of the given word. For example, calling score(street) should return 6 and calling score(QuirKy) should return 22
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started