如下编写代码 会发生报错
原因是python版本的问题 super会在python3上正常调用,在python2上需要添点东西,如下:
在父类的括号后面加上 object 不然会发生 TypeError: super() argument 1 must be type, not classobj
在子类的super调用函数括号里加入子类 名称 和 self
这样 便可以正常运行
如下编写代码 会发生报错
原因是python版本的问题 super会在python3上正常调用,在python2上需要添点东西,如下:
在父类的括号后面加上 object 不然会发生 TypeError: super() argument 1 must be type, not classobj
在子类的super调用函数括号里加入子类 名称 和 self
这样 便可以正常运行