[[email protected] zhouyuyao]# cat c5.py
#!/usr/bin/python
#coding:utf-8
class People(object):
color = ‘yellow‘
def __init__(self,c):
print "Init..."
self.dwell=‘Earth‘
def think(self):
print "I am a %s" % self.color
print "I am a thinker."
class Chinese(People):
def __init__(self):
# People.__init__(self,‘red‘)
super(Chinese,self).__init__(‘red‘) //super函数
pass
cn=Chinese()
[[email protected] zhouyuyao]# python c5.py
Init...
时间: 2024-10-24 08:49:58