Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 779 Bytes

File metadata and controls

31 lines (24 loc) · 779 Bytes

Contact Manager (Python CLI)

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

Project Structure

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

Features

  • Add a new contact
  • View all saved contacts
  • Search for a contact
  • Delete a contact

Technologies Used

  • Python 3
  • Text files for storage

How to Run

  1. Make sure Python 3 is installed.
  2. Run the program using:
python main.py