Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 1.04 KB

File metadata and controls

21 lines (17 loc) · 1.04 KB

My First Python To-Do List

Why I made this?

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.

What can you do with this app?

  1. Add Tasks: You can type a task and it will be added to your list.
  2. View List: You can see all the things you need to do.
  3. Remove Tasks: Once you finish a task, you can delete it from the list.
  4. Exit: You can close the program anytime.

How I built it (Technical details):

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.

How to run it:

Just download the todo_app.py file and run it in any Python editor like IDLE, VS Code, or even an online compiler.