Challenge: Phonebook Application
Task
Swipe to start coding
Create a simple phonebook application using a dictionary to manage contacts. Implement three functions: one to add contacts, one to search for a contact by name, and one to delete a contact by name.
- Add a contact by setting the provided name as the key and the number as the value in the dictionary.
- Search for a contact by name and return the associated number if found, or the string
"Contact not found"if the name does not exist in the dictionary. - Delete a contact by name and return
trueif the contact was deleted, orfalseif the name was not found in the dictionary.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 3
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 4.76
Challenge: Phonebook Application
Swipe to show menu
Task
Swipe to start coding
Create a simple phonebook application using a dictionary to manage contacts. Implement three functions: one to add contacts, one to search for a contact by name, and one to delete a contact by name.
- Add a contact by setting the provided name as the key and the number as the value in the dictionary.
- Search for a contact by name and return the associated number if found, or the string
"Contact not found"if the name does not exist in the dictionary. - Delete a contact by name and return
trueif the contact was deleted, orfalseif the name was not found in the dictionary.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 3
single