2021-04-20 20:17:14 +00:00

19 lines
504 B
Python
Executable File

#!/usr/bin/python3
class Song(object):
def __init__(self, lyrics):
self.lyrics = lyrics
def singMeASong(self):
for line in self.lyrics:
print(line)
happyBday = Song(["Happy Birtday to you",
"IYou belong in a zoo",
"You look like a monkey, and smell like one too!"])
bullsOnParade = Song(["They rally around your family",
"With a pocket full of shells"])
happyBday.singMeASong()
bullsOnParade.singMeASong()