EXTEND: Now it's time to customize your joke!

  • Choose your own and .
  • Change the text in the Say commands to tell your own joke.
  • 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("moon") sprite = codesters.Sprite("astronaut1") sprite.go_to(-125, -150) glorp = codesters.Sprite("alien1") glorp.go_to(100, -125) rock = codesters.Sprite("asteroid") rock.go_to(100, 75) sprite.say("What do planets read?") sprite.set_say_color("white") def click(sprite): sprite.say("Comet books!") sprite.turn_left(360) # add other actions... sprite.event_click(click) def space_bar(): rock.set_x_speed(5) rock.set_y_speed(2) # add other actions... stage.event_key("space", space_bar)