Question: In Python, write a program that takes a string and creates a dictionary with key as first character, and value as words starting with that

In Python, write a program that takes a string and creates a dictionary with key as first character, and value as words starting with that character.

Input string: Hello world this is a test string

Output: ('a', ':', ['a'])

('i', ':', ['is'])

('H', ':',

['Hello'])

('t', ':', ['test', 'this'])

('w', ':', ['world'])

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!