I created this project to practice what I learned in the "Python Essentials 1" course from Cisco Networking Academy. This is my very first step into the world of programming.
- Add Tasks: You can type a task and it will be added to your list.
- View List: You can see all the things you need to do.
- Remove Tasks: Once you finish a task, you can delete it from the list.
- Exit: You can close the program anytime.
I used only the basic concepts from Python Part 1:
- Variables: To store data.
- Lists: To keep all the tasks in one place.
- While Loops: To keep the program running until the user wants to stop.
- If-Else Statements: To help the computer decide which action to take (Add, View, or Delete).
- Functions: To make the code clean and organized.
Just download the todo_app.py file and run it in any Python editor like IDLE, VS Code, or even an online compiler.