STEP 3: To see the effect of our set_stage() function, we need to call it. Let's do this now in the main function!

  • We use main functions to structure our code and to make sure that very little code exists outside of functions.
  • Go to and drag Function Call inside the main function so that it is indented four spaces.
  • Change my_function() to set_stage().

def set_stage(): stage.set_background("soccerfield") stage.disable_floor() def main(): """ Sets up the program and calls other functions """ main()