Unit 3 Task 1: Weekly lunch menu

Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.

Unit 3 Task 1 - Weekly lunch menu

← Unit 3 tasks - Solution


The canteen publishes five meals for Monday-Friday (one string per day). In your program, store them in a list in order (Monday first).

Print each day as: Day 1: [meal] through Day 5: ... using a loop over indexes or enumerate.

Skills: list literals, indexing, for with range(len(...)) or enumerate.

Example: meals = ["Pasta", "Curry", "Soup", "Tacos", "Fish"]