class Song:
     def __init__(self, title, artist):
        self.title = title
        self.artist = artist
    def how_many(self, listener):
        print(listener) 
    
obj_1 = Song("Mount Moose", "The Snazzy Moose")
obj_1.how_many(['John', 'Fred', 'Bob', 'Carl', 'RyAn'])
obj_1.how_many(['Luke', 'AmAndA', 'JoHn']) here
 
#the listener contains 2 lists inside, anything I do produces two lists, is there a way to separate the list inside the listener without changing the objects calling the how_many method simultaneously. Thank you!!! in advance
 
    