Question: python pls strictly follow the instruction In this lab, you wilt: - Use input () to read a line - Use for loop to go


In this lab, you wilt: - Use input () to read a line - Use for loop to go over all symbols in the line - Use a dictionary to get the corresponding value for a certain key - Use the accumulator pattern to keep track of the total Instructions 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 that takes a word as input and outputs the base total value of the word by calling count_scrabbte_points () Implement count_scrabble_points() to calculate the total points for the given string (the function's parameter) and return this total. the output is. 14 Why 14 ? Because we look up the score for each letter and get When we sum up the respective points, we get 14
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
