Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question 12 20 points Write a function named initialDict that takes a string, text, as a parameter and computes and returns a dictionary in which

image text in transcribed

Question 12 20 points Write a function named initialDict that takes a string, text, as a parameter and computes and returns a dictionary in which each initial letter of a word in text is a key. All keys should be lower cased. The value of each key is a list of all words in text beginning with that letter. Input text, a string Return: a dictionary of initial letter:word list pairs For example, the following would be correct output. print(initialDict('The Call of the Wild')) ('c': ['Call'], 't': ['The', 'the'], ' ['Wild'], 'o: ['of'1)

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

Database Security XI Status And Prospects

Authors: T.Y. Lin, Shelly Qian

1st Edition

0412820900, 978-0412820908

More Books

Students also viewed these Databases questions