STEP 16: Now let's change the door to fit our house.

  • Change the y-coordinate parameter to -175.
  • Change the width to 75.
  • Change the height to 150.
  • Make sure you're using the comments to find the correct parameters.

To navigate the page using the TAB key, first press ESC to exit the code editor.

# sprite = codesters.Circle(x, y, diameter, "color") sun = codesters.Circle(-150, 175, 75, "gold") # sprite = codesters.Square(x, y, width, "color") house = codesters.Square(0, -125, 250, "purple") # sprite = codesters.Triangle(x, y, size, "color") roof = codesters.Triangle(0, 100, 300, "green") # sprite = codesters.Rectangle(x, y, width, height, "color") door = codesters.Rectangle(0, 0, 100, 50, "blue")
  • Run Code
  • Submit Work
  • Next Activity
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)