摘要: 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([ 阅读全文
posted @ 2020-04-16 08:55 你走我不走 阅读(143) 评论(0) 推荐(0) 编辑