What is composition in Python?

94 views

What is composition in Python?

What is composition in Python?

solveurit24@gmail.com Changed status to publish February 13, 2025
0

Composition allows creating complex objects from simpler ones, focusing on “has-a” relationships.

class Engine:
    def start(self):
        print("Engine started.")

class Car:
    def __init__(self):
        self.engine = Engine()

    def start_engine(self):
        self.engine.start()

car = Car()
car.start_engine()  # Output: Engine started.

solveurit24@gmail.com Changed status to publish February 13, 2025
0