Код: Выделить всё
class Vehicle:
def __init__(self, license_plate) -> None:
self.license_plate = license_plate
# Several other fields...
register(self) # Expensive!
class Truck(Vehicle):
def __init__(self, v: Vehicle, commercial_license) -> None:
# Move all of v's fields into self without calling Vehicle.__init__ ...
self.commercial_license = commercial_license
register_commercial(self)
Подробнее здесь: https://stackoverflow.com/questions/793 ... -in-python
Мобильная версия