Package Sorter
Boxes are rolling down the conveyor belt. Each box needs to be sent to the correct lane based on its contents.
Lane Rules:
- Fragile: left lane
- Weight > 10kg: Right Lane
- Everything else: Center lane
How do I specify a lane?
Set the variable lane to left, center, or right using if, elif, and else.
Each run sorts all 5 packages using your conditions. Watch each box slide into its chute — green means correct, red means wrong lane. You need all 5 correct to pass.
Hint: One package is both fragile and heavy. The order of your conditions matters!