STEP 10: Our sprite can do a flip!

  • Go to and drag out Turn Left.
  • Change the number in .turn_left() to 360.

This will make our sprite turn 360 degrees - a full circle!

stage.set_background("footballfield2") sprite = codesters.Sprite("cheerleader1") sprite.move_down(150) sprite.flip_up_down() sprite.move_right(200) sprite.move_left(150) sprite.flip_up_down() stage.wait(2) sprite.move_up(50)