A simple command-line Notes App built in Python.
Users can add personal notes and view saved notes anytime.
All notes are stored in a local text file (notes.txt
).
- Add a new note and save it
- View all saved notes, each numbered
- Input validation for menu choices
- Handles missing file gracefully
- Make sure you have Python 3 installed
- Save the script as
notes_app.py
- Open terminal or command prompt
- Navigate to the folder containing the script
- Run:
python notes_app.py
- Python 3
- File handling with
open()
,.write()
,.readlines()
- Building a simple menu-driven CLI app
- Exception handling (
try/except
) - Input validation
⚓✨ Built as part of my journey from beginner to intermediate Python developer.