Create a constructor for the class Song that takes in a name and an artist.
Song
name
artist
Make sure to pick def followed by __init__ and then (, self, artist, ), :.
def
__init__
(
self
)
: