Table of Contents

Python - Class Inheritance

About

Object - Inheritance in Python

Management

Creation

Class keyword

class DerivedClass(BaseClass)

where:

Dynamic

See Python Type - Dynamic Class

Access

To directly access the attributes or methods of a superclass, use the built-in super function.

class DerivedClass(Base):
   def some_method(self):
       super(DerivedClass, self).methode()

where: