![](https://images2018.cnblogs.com/blog/1363707/201804/1363707-20180420111645693-1311076678.png)
class Zoo(): 2 def sleep(self): 3 print('---睡觉---') 4 def eat(self): 5 print('---吃----') 6 def run(self): 7 print('--跑--') 8 class Dog(Zoo): 9 def cry(): 10 print('---叫---') 11 class Cat(): 12 def grab(self): 13 print('---zhua--- ') 14 a = Zoo() 15 a.eat() 16 wangcai = Dog() 17 wangcai.run() ~