类方法给我无

时间:2019-12-21 08:32:05

标签: python oop inheritance

这是代码:

class Dog:
    def walk(self):
        print("walking")

class Cat(Dog):
    def shit(self):
        super().walk()



foo = Cat()
print(foo.shit())

Output: 
Walking 
None

为什么没有给我?

0 个答案:

没有答案