Build a small fictional clinic task tracker that stores tasks in a list, displays them with a function, and allows one new task to be added.
Reveal step-by-step solution
1. Create clinic_task_tracker.py. 2. Make a list with three fictional tasks. 3. Write a function called display_tasks that loops through the list and prints each item. 4. Call the function to show the original tasks. 5. Ask the user to add one new fictional task. 6. Append the new task to the list. 7. Call the display function again to show the updated list. 8. Check that the new task appears at the end.