函数..接受0个位置参数,但给出了1个

时间:2019-03-29 03:37:37

标签: python oop

我是Python的新手,我想练习一个父类和派生类。我想使用超级调用子类的父函数。但是我遇到了一些错误。代码是

class First:
    def my_func():
        print('first')

class Second(First):
    def my_func1():
        super().my_func()
        print('second')

obj = Second()
obj.my_func1()

1 个答案:

答案 0 :(得分:0)

class First:
    def my_func(self):
        print('first')

class Second(First):
    def my_func1(self):
        super().my_func()
        print('second')

obj = Second()
obj.my_func1()