def __init__(self, money, faceValue): ''' 多继承时,调用父类构造方法的格式:父类名.__init__(self,[,参数列表]) 单继承时,调用父类构造方法的格式:super.__init__(self,[,参数列表]) ''' Father.__init__(self, money) Mother.__init__(self, faceValue)
def __init__(self, money, faceValue): Father.__init__(self, money) Mother.__init__(self, faceValue)
def __init__(self, money, face): Father.__init__(self, money=money) Mather.__init__(self, face=face)
def __init__(self, money, facevalue): Father.__init__(self, money) Mother.__init__(self, facevalue) print(Father.eat(self)) print(Mother.eat(self))
def __init__(self, money, faceValue): Father.__init__(self, money) Mother.__init__(self, faceValue) self.height = 170