标签:父类 方法 tin int 继承 重构 %s self python
class people:class man(people): #继承父类
def piao(self):
print("%s is piaoing。。。。。" % self.name)
def sleep(self):#重构父类的方法
people.sleep(self)
print("%s is sleeping and eat。。。。"%self.name)
class woman(people): #继承父类
def get_birth(self):
print("%s is get_birth" % self.name)
m1=man("李明",28)
w1=woman("王丽娜",33)
m1.eat()
w1.eat()
m1.piao()
m1.sleep()
w1.get_birth()
标签:父类 方法 tin int 继承 重构 %s self python
原文地址:http://blog.51cto.com/3906249/2300256