# 编程之家 (jb51.cc)
class Human(object):
laugh = 'hahahaha'
def show_laugh(self):
print self.laugh
def laugh_100th(self):
for i in range(100):
self.show_laugh()
li_lei = Human()
li_lei.laugh_100th()
# End 512.笔记 jb51.cc
这里有一个类属性laugh。在方法show_laugh()中,通过self.laugh,调用了该属性的值。