from date import Date # used for the date attribute in Song class Song: """A simple class that has three attributes, title, singer, and date""" def __init__(self, title, singer, date): self.title = title self.singer = singer self.date = date def __str__(self): return 'Title: ' + self.title + '\n' \ + 'Singer: ' + self.singer + '\n' \ + 'Date: ' + str(self.date)