EXTEND: Now customize your program how ever you want! Change at least three things about your program.

  1. Change the background image or the sprite image.
  2. Change where the sprite moves.
  3. Add a Turn Right command from the toolkit
  4. When you're done, click Submit and Next to move on to your Create project.

stage.set_background("winter") sprite = codesters.Sprite("fox") sprite.move_down(150) stage.wait(2) sprite.move_right(50) def click(): sprite.say("Hello, Codester") sprite.event_click(click)