Build a small application workflow that processes at least three fictional items, assigns a priority or status message, and prints a final summary. Optional: write the summary to a text file.
Reveal step-by-step solution
1. Create a list of fictional items, such as feature requests. 2. Write a function that returns a priority message based on the item data. 3. Loop through the list and call the function for each item. 4. Store or print the formatted result. 5. Add a summary count for each priority level. 6. Run the script and verify the final report is readable and consistent.