python 面向对象整理 --------2.类的继承

Posted solarzc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 面向对象整理 --------2.类的继承相关的知识,希望对你有一定的参考价值。

1.类的继承:

#/usr/bin/env
#coding = utf-8
class animal():
    def __init__(self,name):
        self.name=name
    def eat(self):
        print("%s eat food!" %self.name)

class cat(animal):
    def cry(self):
        print("%s miaomiao jiao" %self.name)

class dog(animal):
    def cry(self):
        print("%s wangwang jiao" %self.name)

cat1 = cat(小猫)
cat1.eat()
cat1.cry()

dog1 = dog(小狗)
dog1.eat()
dog1.cry()

结果:

小猫 eat food!
小猫 miaomiao jiao
小狗 eat food!
小狗 wangwang jiao

 

 

 

参考文档:https://www.cnblogs.com/wupeiqi/p/4493506.html

以上是关于python 面向对象整理 --------2.类的继承的主要内容,如果未能解决你的问题,请参考以下文章

Python基础班每日整理

python 面向对象整理 --------1.类和实例的属性

60集Python入门视频PPT整理 | Python类与面向对象

Python opp知识整理

Python介绍与特点(自学python知识整理)

Python介绍与特点(自学python知识整理)