8.27 LAB: Scrabble points Scrabble is a word game in which words are constructed from letter tiles, each letter tile containing a point value. The value of a word is the sum of each tile's points...



8.27 LAB: Scrabble points





Scrabble is a word game in which words are constructed from letter tiles, each letter tile containing a point value. The value of a word is the sum of each tile's points added to any points provided by the word's placement on the game board.


Write a program using the given dictionary of letters and point values that takes a word as input and outputs the base total value of the word (before being put onto a board).


Ex: If the input is:


PYTHON


the output is:


14




Use Python for this.




LAB<br>8.27.1: LAB: Scrabble points<br>3/ 10<br>АСTIVITY<br>main.py<br>Load default template...<br>1 tile dict = { 'A': 1, 'B': 3, 'C': 3, 'D': 2, 'E': 1, 'F': 4, 'G': 2, 'H': 4, 'I': 1, 'J': 8,<br>'K': 5, 'L': 1, 'M': 3, 'N': 1, '0': 1, 'P': 3, '0': 10, 'R': 1, 'S': 1, 'T': 1,<br>2<br>'U': 1, 'V': 4, 'W': 4, 'X': 8, 'Y': 4, 'Z': 10 }<br>4<br>Type your code here. ''|<br>

Extracted text: LAB 8.27.1: LAB: Scrabble points 3/ 10 АСTIVITY main.py Load default template... 1 tile dict = { '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, '0': 1, 'P': 3, '0': 10, 'R': 1, 'S': 1, 'T': 1, 2 'U': 1, 'V': 4, 'W': 4, 'X': 8, 'Y': 4, 'Z': 10 } 4 Type your code here. ''|

Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here