这里是使用module,我们可以把被调用的类创造出来一个模块,比如说我现在想做一个通讯录,在最高层的类是Person,然后有一个Teacher类继承Person,我们就可以把Person类当做模块导入到Teacher类中,具体的参考代码如下:
import Person_class
class Teacher(Person_class.Person):
def __init__(self, name, age, salary):
Person_class.Person.__init__(self, name, age)
self.salary = salary
print '(Initialized Teacher: %s)' % self.name
def tell(self):
Person_class.Person.tell(self)
print 'Salary: "%d"' % self.salary
t = Teacher('hsc', '30', 3000)
t.tell()