EXTEND: Now extend your program however you want! You could:

  • Try changing the or the .
  • Try changing the angle that the sprite turns.
  • Try changing the number of pixels the sprite moves forward.
  • Click Submit to complete your Hour of Code! Click Next to make your own Spiral Art!

stage.set_background("field") sprite = codesters.Sprite("hedgehog") sprite.set_size(.5) sprite.set_speed(10) sprite.pen_down() sprite.set_color("yellow") for counter in range(30): # add code here sprite.move_forward(4) sprite.turn_left(92)