STEP 4: Now we can use the value we got with the index to set our background!

  • In GRAPHICS, go to and drop Set Background at the bottom of your code.
  • Change the argument in .set_background() from "city" to stage_image.
  • Click Run to see the background set. What image is the background set to?

Remember, an argument is information that a command needs in order to run!

######################################################################## # PLACE LIST CREATIONS HERE # ######################################################################## stage_list = ["moon", "mars", "jupiter", "pluto", "space", "city"] ######################################################################## # PLACE ALL OTHER CODE BELOW THIS # ######################################################################## stage_image = stage_list[0]