#!/usr/bin/python # exact position of python
#!/usr/bin/env python # position of python in enviornment
# -*- coding:utf-8 -*- # Modules, Classes, And Objects
class Song(object):
def __init__(self, lyrics):
self.lyrics = lyrics
def sing_me_a_song(self):
for line in self.lyrics:
print line
happy_day = 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 the family",
"With pockets full of shells"])
happy_day.sing_me_a_song()
bulls_on_parade.sing_me_a_song()
Python Exercise #40
最新推荐文章于 2015-08-18 11:45:46 发布
