STEP 14: Let’s put the roof at the top and change the color.

  • Change the y-coordinate to 100.
  • Change the triangle’s color to "green".
  • Make sure that you change the correct parameters. Use the comment as a guide.

# 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, 0, 300, "blue")