Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.
← Back to task
One possible program:
def can_ride(height_cm): return height_cm >= 120 print(can_ride(130)) print(can_ride(110))