Let's move the greeting to the center.

  • Go to and drag Go To to the bottom of your program.
  • Assign the command to greeting by changing the name in front of .go_to().
  • Change the x-coordinate (first number) to 0.
  • Change the y-coordinate (second number) to 200.

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!")