# Song Example # Source code file kareoke-song.rb # A KarokeSong must include the lyrics to the # song so the participants can sing the song. from song import Song class KareokeSong(Song): def __init__(self, the_name, the_duration_min, \ the_duration_sec, the_artist, the_lyrics): super( ).__init__(the_name, the_duration_min, the_duration_sec, the_artist) self.lyrics = the_lyrics # No __str__ method is define because the inherited # base class method is used.