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