diff --git a/README.md b/README.md index 9944e6b..9d5ea41 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # Contact_Management_System-Python A simple Contact Management System program that allows users to store and manage contact information. The program should provide options to add a new contact by entering their name, phone number, and email address. + +It should also allow users to view their contact list, edit existing contacts, and delete contacts if needed. The program should store the contacts in memory or in a file for persistent storage. +This program defines a Contact class to represent individual contacts and a ContactManager class to manage contacts. The data is stored in memory in a dictionary. You can add, view, edit, and delete contacts using the provided options.