python类的继承的两种方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python类的继承的两种方式相关的知识,希望对你有一定的参考价值。
class Animal(object):
"""docstring for Animal"""
def __init__(self, name):
self.name = name
def run(self):
print ‘Animal is running...‘
class Dog(Animal):
"""docstring for Dog"""
def __init__(self,name):
# super(Dog, self).__init__(name)
Animal.__init__(self,name)
def printName(self):
print ‘Name: %s‘ % self.name
kk=Dog("kity")
kk.printName()
kk.run()
以上是关于python类的继承的两种方式的主要内容,如果未能解决你的问题,请参考以下文章