# A Song class to contain a song title and it's artist class Song: def __init__(self, title, artist): self.title = title self.artist = artist # Print the values of the song as the object representation def __str__(self): full_song_representation = self.title + " by " + self.artist return full_song_representation