Python calls the parent class method three ways

Python calls the parent class method three ways

	父类名字.父类方法(self)
	super().父类的方法名()
	super(当前类的名字Animal,self).父类的方法名()

Guess you like

Origin blog.csdn.net/u012308586/article/details/108540036