: Inside the loop, you must use if/else or if/else if blocks to determine when to turn. Check for a road ahead to move forward.

The is a major milestone in Code for Life , as it requires players to "put all that hard work to the test" by combining loops, conditional logic, and sensor-based movement . Unlike earlier levels that use fixed numbers of steps, Level 48 demands a general algorithm that allows the van to navigate dynamically based on the road ahead. The Core Logic: Using "Repeat Until" and "If"

: While Level 48 focuses on complex routing, remember to use repeat while traffic light is red if your specific version of the level includes signals.

Check for to handle intersections or turns.

from van import Van my_van = Van() while not my_van.at_destination(): if my_van.road_ahead(): my_van.move_forwards() elif my_van.road_left(): my_van.turn_left() my_van.move_forwards() elif my_van.road_right(): my_van.turn_right() my_van.move_forwards() Use code with caution.

: Ensure your code can handle turns without knowing exactly how many steps are between them. A "sensor-based" approach is always better than hard-coding steps like move_forwards(5) .

: The van should prioritize moving forward if possible, only turning when the road ends or a turn is mandatory. Python Implementation