Python Program to Create a Dictionary with Key as First Character and Value as Words Starting with that Character
This is a Python Program to create a dictionary with key as first character and value as words starting with that character. Problem Description The program takes a string and creates a dictionary with key as first character and value as words starting with that character. Problem Solution 1. Enter a string and store it … Read more