This is your capstone project! Bring together everything you've learned — variables, loops, conditionals, and functions — to build a fully working task manager.
YOUR TASK
Create a program with a menu that:
1. Add Task — ask for a task name and add it to a list
2. View Tasks — print all tasks numbered
3. Remove Task — ask for a task number and remove it
4. Exit — stop the program
Keep the menu running until the user exits. Use a list to store tasks.
Need a hint?
Structure:
1. tasks = [] — start with an empty list
2. Write functions: def add_task(tasks): ... — use tasks.append() def view_tasks(tasks): ... — loop and print with index def remove_task(tasks): ... — use tasks.pop(index)
3. while True: loop with the menu
4. Use if/elif for choices 1–4, break on 4
Console initialized...
Ready for Final Project: Simple To-Do List
> This is your capstone — bring it all together!
> When it works, complete the course!