笨方法学Python——习题40

Posted 龙道人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了笨方法学Python——习题40相关的知识,希望对你有一定的参考价值。

之前例子讲过关于字典、列表、字符串、元组,按书中所述,其实这些已经足够写一些代码,但Python属于面向对象的编程语言,本节所讲的类,是必须要掌握的,虽然现在有些懵逼

 1 class Song(object):
 2 
 3     def __init__(self, lyrics):
 4         self.lyrics = lyrics
 5 
 6     def sing_me_a_song(self):
 7         for line in self.lyrics:
 8             print line
 9 
10 happy_bday = Song(["Happy birthday to you",
11                     "I don‘t want to get sued",
12                     "So I‘ll stop right there"])
13 
14 bulls_on_parade = Song(["They rally around the family",
15                         "With pockets full of shells"])
16 
17 happy_bday.sing_me_a_song()
18 
19 bulls_on_parade.sing_me_a_song()

 

以上是关于笨方法学Python——习题40的主要内容,如果未能解决你的问题,请参考以下文章

python--笨方法学python 习题52

笨方法学Python-26章练习题

笨方法学Python——习题16

笨方法学Python

笨方法学Python三

笨办法学 Python(第三版)习题 18: 命名变量代码函数