A simple Python script for logging, editing, and saving notes to a persistent CSV file.
Developed as part of a learning process to build user-oriented and data-driven applications.
- Display the full list of notes
- Add a note with date and time
- Remove a note from the list
- Edit a note by index
- Save all notes to a CSV file
- Load notes from a CSV file
- Includes full program flow control (menu and actions)
- Python Standard Library:
os,datetime,csv - Storage: CSV file (
notes_db.csv)
This project is part of a self-learning series focused on:
- Building small, user-interactive Python tools
- Practicing file I/O and data persistence
- Understanding modular code structure and logic control