Question: python only Starting with your solution to the previous task, add the following methods to your Artist class to extend its functionality. - A method
python only
Starting with your solution to the previous task, add the following methods to your Artist class to extend its functionality. - A method named add_song (self, song_name) which takes the name of a song as a parameter. The method appends the parameter song to the list of songs. - A method named __str___(self) which returns a string representation of the Artist object as shown in the examples below. The method returns "xx has not performed any songs yet." where xxx defines the full name of the artist if the artist has not performed any songs. The method returns the list of songs as shown in the examples below if the artist has performed at least 1 song. Note: submit the entire class definition in the answer box below
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
