Let's have the sprite do a flip too!

  • Go to and drag Turn Left inside of the click() event.

The .turn_left() command should have a green block ···· in front of it.

  • Change the number in .turn_left() to 360.

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

stage.set_background("winter") sprite = codesters.Sprite("person12") sprite.go_to(-125, -150) frosty = codesters.Sprite("snowman") frosty.go_to(100, -125) snow = codesters.Sprite("snowflake3") snow.go_to(100, 75) greeting = codesters.Text("Happy Holidays!") greeting.go_to(0, 200) greeting.set_color("yellow") def click(sprite): sprite.say("I hope your holidays are great!") # add other actions... sprite.event_click(click)