A simple command-line Contact Manager application built using Python. This project is designed to help beginners understand:
- File handling (text file-based data persistence)
- Function modularization
- Conditional statements and loops
- Basic input/output validation
Contact_manager |---contactbook.txt #contactbook stores contactS(name,number) |---file_manager.py #Manages the contactbook by saving and loading the contact information |---main.py #Main module
- Add a new contact
- View all saved contacts
- Search for a contact
- Delete a contact
- Python 3
- Text files for storage
- Make sure Python 3 is installed.
- Run the program using:
python main.py