-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f300141
commit a35e51d
Showing
1 changed file
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |