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 in a variable.
2. Declare an empty dictionary.
3. Split the string into words and store it in a list.
4. Using a for loop and if statement check if the word already present as a key in the dictionary.
5. If it is not present, initialize the letter of the word as the key and the word as the value and append it to a sublist created in the list.
6. If it is present, add the word as the value to the corresponding sublist.
7. Print the final dictionary.
8. Exit.

Program/Source Code

Here is source code of the Python Program to create a dictionary with key as first character and value as words starting with that character. The program output is also shown below.

test_string=raw_input("Enter string:")
l=test_string.split()
d={}
for word in l:
    if(word[0] not in d.keys()):
        d[word[0]]=[]
        d[word[0]].append(word)
    else:
        if(word not in d[word[0]]):
          d[word[0]].append(word)
for k,v in d.items():
        print(k,":",v)
Program Explanation

1. User must enter a string and store it in a variable.
2. An empty dictionary is declared.
3. The string is split into words and is stored in a list.
4. A for loop is used to traverse through the words in the list.
5. An if statement is used to check if the word already present as a key in the dictionary.
6. If it is not present, the letter of the word is initialized as the key and the word as the value and they are append to a sublist created in the list.
7. If it is present, the word is added as the value to the corresponding sublist.
8. The final dictionary is printed.

advertisement
advertisement
Runtime Test Cases
 
Case 1:
Enter string:Hello world this is a test string sanfoundry
('a', ':', ['a'])
('i', ':', ['is'])
('H', ':', ['Hello'])
('s', ':', ['sanfoundry', 'string'])
('t', ':', ['test', 'this'])
('w', ':', ['world'])
 
Case 2:
Enter string:python is my most favourite programming language in the entire world
('e', ':', ['entire'])
('f', ':', ['favourite'])
('i', ':', ['in', 'is'])
('m', ':', ['most', 'my'])
('l', ':', ['language'])
('p', ':', ['programming', 'python'])
('t', ':', ['the'])
('w', ':', ['world'])

Sanfoundry Global Education & Learning Series – Python Programs.

To practice all Python programs, here is complete set of 150+ Python Problems and Solutions.

If you find any mistake above, kindly email to [email protected]

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.