Now it's time to customize your greeting card!

  • Choose your own and . Try checking out the Holiday Sprites section!
  • Change the Text to display your own message.
  • Add new to the click() and space_bar() events. You can also add new .
  • Click Submit to complete your Hour of Code! Click Next to apply your skills to in a new project!

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) gift = codesters.Sprite("present7", 0, -175) greeting = codesters.Text("Happy Holidays from Codesters!") greeting.go_to(0, 200) greeting.set_color("purple") def click(sprite): sprite.say("I hope your holidays are great!") sprite.turn_left(360) # add other actions... sprite.event_click(click) def space_bar(): # add other actions... snow.set_x_speed(5) snow.set_y_speed(2) stage.event_key("space", space_bar)