View the following class definition, then answer the questio…
View the following class definition, then answer the question that follows. class Date ( ): def __init__ (self, month, day, descr): self.month = month self. day = day self.descr = descr def __str__ (self): return str(self.month) + ‘/’ + str(self.day) + ‘/’ + str(self.year) + ‘ – ‘ + self.descr What changes should be done to the above code so that its objects include a year as an attribute? Check all that must be done.