标签: python
我无法在Python 2.7.9中使用super;有可能使用它吗?我一直在尝试的代码:
super
class Base(): def __init__(self): print "It's a Base" class Secondary(Base): def __init__(self): super(Secondary,self).__init__() Secondary()
错误:
Must be type not classobj