python how to call super init code example

Example 1: python super

class Square(Rectangle):
    def __init__(self, length):
        super().__init__(length, length)

Example 2: using super constructor python

class Rectangle:
    def __init__(self, length, width):
        self.length = length
        self.width = width

    def area(self):
        return self.length * self.width

    def perimeter(self):
        return 2 * self.length + 2 * self.width

# Here we declare that the Square class inherits from the Rectangle class
class Square(Rectangle):
    def __init__(self, length):
        super().__init__(length, length)