1. 程式人生 > >python繼承中super()的使用

python繼承中super()的使用

class Root(object):

    def __init__(self,x1,x2):
        print('ok, good luck!',x1,x2)




class A(Root):

    def __init__(self,x3,x4,x1=1,x2=2):
        super().__init__(x1,x2)
        print(x1,x2,x3,x4)


x=A(3,4)

輸出: