我是Python的新手,我想练习一个父类和派生类。我想使用超级调用子类的父函数。但是我遇到了一些错误。代码是
class First:
def my_func():
print('first')
class Second(First):
def my_func1():
super().my_func()
print('second')
obj = Second()
obj.my_func1()
答案 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()