python init inheritance code example
Example 1: python inherit parent class init
SuperClass.__init__(self, variable)
Example 2: python3 call parent constructor
super(Instructor, self).__init__(name, year)
SuperClass.__init__(self, variable)
super(Instructor, self).__init__(name, year)