Super Method
This lesson covers multiple use-cases of the super method in Python and how it makes inheritance easier.
We'll cover the following...
Introduction
As we discussed before, you can access the constructor and methods of the parent class in the child class using
ParentClassName.__init__(self, methodParameter)
...