You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
488 B
21 lines
488 B
|
|
class Song(object):
|
|
|
|
def __init__(self, lyrics):
|
|
self.lyrics = lyrics
|
|
|
|
def sing_me_a_song(self):
|
|
for line in self.lyrics:
|
|
print(line)
|
|
|
|
happy_bday = Song(["Happy birthday to you",
|
|
"I don't want to get sued",
|
|
"So I'll stop right there"])
|
|
|
|
bulls_on_parade = Song(["They rally around tha family",
|
|
"With pockets full of shells"])
|
|
|
|
happy_bday.sing_me_a_song()
|
|
|
|
bulls_on_parade.sing_me_a_song()
|
|
|
|
|