# Song Example # A choir song needs a composer and conductor from song import Song class ChoirSong(Song): def __init__(self, the_name, the_duration_min, \ the_duration_sec, the_composer, the_conductor): super( ).__init__(the_name, the_duration_min, \ the_duration_sec, None) self.composer = the_composer self.conductor = the_conductor def __str__(self): return f'''Name: {self.name} Duration: {self.get_duration( )} Composer: {self.composer} Conductor: {self.conductor}'''