The answer has been posted in the comments but I think you misunderstood him, so I am going to elaborate a bit more.
Your class Triangle inherits functions from a parents class of some sort. Even though you didn't write a def __str__(self):
in Triangle, it can still be used because it is defined in your parent class, and Triangle inherits functions from the parent class
If you don't want to use any of the parent class' functions, you can redefine it in Triangle. When you call that function on a Triangle Python will prefer to use the def __str__(self):
in Triangle before referencing the parent class.
In short, you need to write a new def __str__(self):
similar to the one in your parent class, but add another portion in the output that accounts for the color. I hope this helps Charmaine. Good luck!