python中super出现的TypeError: must be type, not classobj 缘由及解决

示例以下 class A(): def __init__(self):pass class B(A): def __init__(self): super(A, self).__init__() 调用B建立对象时出现错误html TypeError: must be type, not classobj 查找资料以后发现,python中super只能应用
相关文章
相关标签/搜索