python 3 super init code example
Example: python super
class Square(Rectangle):
def __init__(self, length):
super().__init__(length, length)
class Square(Rectangle):
def __init__(self, length):
super().__init__(length, length)