子类中调用父类的方法 1.子类继承了父类的方法,然后想进行修改,那么就需要在子类中调用父类的方法. 2.方法一:父类名 class School: Country = 'china' def __init__(self,name,address): self.name = name self.address = address def go(self): print('开学啦~~~!') class Qh(School): def __init__(self,name,address,phone…