2548029GO 2548029GO Computers and Technology Answered Complete the class definition. class shoe: def (self, style, color): self.style = style self.color = color def __str__(self): return self.style + ' ' + self.color