Question: get a solution please Problem 9 Use a list comprehensions and zip to create a list called wordTups from the string myQuote. Each element in
get a solution please
Problem 9 Use a list comprehensions and zip to create a list called wordTups from the string myQuote. Each element in wordTups is a tuple where the first element of the tuple is the word (from the set of words in myQuote) the second element is the length of the word, and the third element is the Scrabble score for the word. Print word Tups. While not required, you are challenged is to solve this problem using one statement to create the list and another statement to print the list. In [ ]: # write your code below Expected Output: [('The', 3, 6), ('quality', 7, 19), ('of', 2, 5), ('mercy', 5, 12), ('is', 2, 2), ('not', 3, 3), ('strained', 8, 9), ('it', 2, 2), ('dropeth', 7, 13), ('as', 2, 2), ('the', 3, 6), ('gentle', 6, 7), ('rain', 4, 4), ('from', 4, 9), ('heaven', 6, 16)]Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
