Hands-on lab

Python Programming for Application Development: Practical Python for Technology Professionals
Lesson Content
0% Complete

Build a release checklist script that stores at least five fictional tasks in a list and prints them with numbers or status labels.

Reveal step-by-step solution

1. Create a list named checklist with five fictional tasks. 2. Use for item in checklist:. 3. Inside the loop, print the item with a status prefix such as '[TODO]'. 4. Run the script and confirm all tasks display. 5. Optionally, add a counter using enumerate if comfortable. 6. Verify the output is clean and readable.