当前位置:天才代写 > tutorial > Python教程 > python多父类继承示例 python多父类继承示例 最后更新 2018-05-17 08:00 星期四 所属: Python教程 浏览:392 python">class A: def foo(self): print 'foo called in A' class B: def foo(self): print 'foo called in B' def bar(self): print 'bar called in B' class C(A,B): pass 标签:python