Let's change the number of degrees the turtle turns so that it doesn't just draw a square.

  • Change the number of degrees the sprite turns in .turn_left() to 92.

stage.set_background("pond") sprite = codesters.Sprite("turtle1") sprite.set_size(.5) sprite.pen_down() sprite.set_color("yellow") for counter in range(5): # add code here sprite.move_forward(50) sprite.turn_left(90)