python 类的继承

Posted 赵先鑫

tags:

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

class Person():
    def __init__(self, name):
        self.name = name

    def setName(self, name):
        self.name = name

class Satter(Person):
    def __init__(self, name, company):
    # 调用父类方法 super(Satter, self).
__init__(name) self.company = company def setCompany(self, company): self.company = company if __name__ == "__main__": s = Satter("zhao", "byte") print(s.__dict__) s.setName("hahah") print(s.__dict__)

 

以上是关于python 类的继承的主要内容,如果未能解决你的问题,请参考以下文章

java 代码片段

python类的继承

Python类的继承

Python类的继承

Python类的继承

Python类的继承