总结python实现父类调用两种方法的不同 python中有两种方法可以调用父类的方法:super(Child,self).method(args) Parent.method(self,args)我用 python调用父类方法