I have been working on the project Veneer and have come over a problem. When writing the code for string representation in the Art Class I attempted to write
def __repr__(self):
return '%s. %s. %s. %s. %s %s.' (self.artist,self.year, self.medium, self.year, self.owner.name, self.owner.location)
The second dot in self.owner.name and self.owner.location are not becoming white like they are in the tutorial when I went to see what was wrong. Also, maybe I forgot something obvious I learned but what are those dots called. If someone could help me understand why they are not and how to do it correctly that would be amazing. I thank you for your help I am not very good at this yet but I enjoy the course and community.