Activity: Say
I'M FINISHED WITH HOUR OF CODE!

STEP 14: Let's have the sprite say something once it's finished with the dance.

  • Go to and drag out Say.
  • Drop it at the bottom of your program, after all of the cheer steps.

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) sprite.turn_left(360) sprite.move_down(50) stage.wait(2) sprite.flip_right_left() stage.wait(1) sprite.flip_right_left() stage.wait(1) sprite.flip_right_left() stage.wait(1) sprite.flip_right_left() stage.wait(1)
Support