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.
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. ''|