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
JoHn
in second wave is a typo or you need to capitalize all input. I assume you need capitalize it.set
to deal with the remove the duplicate in mutiple input.class Song:
def __init__(self, title, artist):
self.title = title
self.artist = artist
self.linstener = set()
def how_many(self, listener):
listener = [ele.capitalize() for ele in listener]
print(len((self.linstener | set(listener)) ^ self.linstener))
self.linstener.update(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'])
5
2