EXTEND: Now customize your house! Be sure to meet these minimum technical requirements:

  1. Add a background!
  2. Change the color of the at least one part of your house!
  3. Add a person or animal sprite. Change the variable name we use to refer to your sprite!
  4. Click Submit to go on to the Create!

# 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, -175, 75, 150, "blue")