Overlaoding

Wed 12 November 2025
class Box:
    def __init__(self, length):
        self.length = length

    def __add__(self, other):
        return self.length + other.length

box1 = Box(10)
box2 = Box(20)
print("Total Length:", box1 + box2)
Total Length: 30


Score: 0

Category: python-basics