Python中的新式类(new style class)和老式类(old style class)
也可以在我的博客阅读:https://jiajunhuang.com/articles/2019_05_29-python_old_new_style_class.md.htmlPython2.3之前,使用的是老式继承,直接看例子:>>>O=object>>>classX(O):pass>>>classY(O):pass>>>classA(X,Y):pass>>>classB(Y,X):pass这