示例如下 class A(): def __init__(self):pass class B(A): def __init__(self): super(A, self).__init__() 当调用B创建对象时,会出现错误 TypeError: super() argument 1 must be type, not classobj python中的super只能应用于新类,而不能应用于经典类. 新类的意思大概就是要有父类. 例如 class B(A): 经典类就是没有父类的类 例如 cl…
Python中类的__init__继承 概念: 定义父类 In [10]: class Person: ....: def __init__(self,name,age,sex): ....: self.name = name ....: self.age = age ....: self.sex = sex ....: def get_name(self): ....: print('name:',self.name) ....: In [11]: Bob = Person('Bob',18,…