Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

DB2 11 The Database For Big Data And Analytics

Authors: Cristian Molaro, Surekha Parekh, Terry Purcell, Julian Stuhler

1st Edition

1583473858, 978-1583473856

More Books

Students also viewed these Databases questions

Question

Why is effective goal-setting important to performance management?

Answered: 1 week ago

Question

4. Show the trainees how to do it again.

Answered: 1 week ago

Question

8. Praise the trainees for their success in learning the task.

Answered: 1 week ago