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, day, month, year, descr): self.month = month self. day = day self.year = year self.descr = descr def __str__ (self): return str(self.month) + ‘/’ + str(self.day) + ‘/’ + str(self.year) + ‘ – ‘ + self.descrd1 = Date(’01’, ’04’, ‘2025’, ‘Important date’)print(d1) What is the display output of the above code?