π Command-Line To-Do Application (Python)
π Project Overview
This is a simple Command-Line To-Do Application built using Python. It allows users to add tasks and view their task list directly from the terminal.
This project is designed for beginners to understand basic Python concepts like:
- Functions
- Lists
- Loops
- Conditional statements
- User input handling
π Features
β Add new tasks π View all tasks π Continuous loop until user exits β Handles invalid input
π οΈ Technologies Used
- Python
- VS Code / Any Python IDE
The program shows a menu:
1. Add Task
2. View Tasks
3. Exit
- Choose 1 β Add a new task
- Choose 2 β View all tasks
- Choose 3 β Exit the program
π Project Structure
todo_app.py # Main Python file
README.md # Project documentation
π§ Concepts Used
- Lists to store tasks
- Functions for modular code
- While loop for continuous execution
- If-else conditions for decision making
π Future Improvements
- Delete task feature
- Mark task as completed
- Save tasks to file (persistent storage)
- Add GUI version