This project is a simple To-Do List application built using Python. It helps users manage their daily tasks by allowing them to add, view, and remove tasks easily from the list.
This project is useful for beginners to understand basic Python concepts like lists, loops, functions, and user input.
- Add new tasks
- View all tasks
- Delete completed tasks
- Simple command-line interface
- Beginner-friendly Python project
- Python 3
todo-list-project/ │ ├── todo.py ├── README.md
-
Make sure Python is installed on your system.
-
Clone this repository:
git clone https://github.com/your-username/todo-list-project.git
- Open the project folder:
cd todo-list-project
- Run the program:
python todo.py
- Add Task
- View Tasks
- Delete Task
- Exit
Enter your choice: 1 Enter task: Complete Python project
- Add task priority
- Save tasks in a file
- Create a graphical interface using Tkinter
- Convert to a web app using Flask
Bhanushree R