✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Olgu meil järgnev kood:
class Engine:
def __init__(self, hp, type): self.hp = hp self.type = type def start(self): print(f"{self.type} engine with {self.hp} horsepower started")class Car: def __init__(self, make, model, engine): self.make = make self.model = model self.engine = engine def start(self): print(f"starting {self.make} {self.model}") self.engine.start()car = Car("Audi", "A7", Engine(280, "V6"))car.start()
Mis prinditakse konsooli?