Package Sorter
Boxes are rolling down the conveyor belt. Your job is to sort each one into the correct lane.
Set the lane variable to "left", "center", or "right" using if, elif, and else.
Sorting rules:
fragile == True → "left" (handle with care)
weight > 10 → "right" (heavy items)
- Everything else →
"center" (standard)
Your code runs once for each of the 5 packages. Watch the boxes slide into their chutes — green flash means correct, red means wrong lane. All 5 must be correct to pass.
Hint: One package is both fragile and heavy — the order of your conditions matters!