python 3.6 super call code example
Example 1: python super
class Square(Rectangle):
def __init__(self, length):
super().__init__(length, length)
Example 2: python3 call parent constructor
super(Instructor, self).__init__(name, year)
class Square(Rectangle):
def __init__(self, length):
super().__init__(length, length)
super(Instructor, self).__init__(name, year)