python多父类继承示例
当前位置:以往代写 > Python教程 >python多父类继承示例
2019-06-14

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

    关键字:

在线提交作业