python多父类继承示例 python多父类继承示例 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