The hurdle loop challenge 1 - using "for loops" - Reeborg's world

 def turn_right():

    turn_left()

    turn_left()

    turn_left()

def jump():

    move()

    turn_left()

    move()

    turn_right()

    move()

    turn_right()

    move()

    turn_left()


for steps in range(1, 7):

    jump()






Comments

Popular posts from this blog

Converting student scores to grades (Dictionaries)