super()

super()在python3中的意思是调用当前类的父类

super().__init__()调用本类的父类的__init__构造方法

super().qita方法()调用本类的父类的其它方法

你可能感兴趣的:(python,python)