В последней строчке выдает ошибку:TypeError: description() missing 1 required positional argument: ‘self’
Почему я не могу сослаться на метод class Gas_tank() ?
class Car():
def __init__(self,model, year):
self.model = model
self.year = year
class Gas_tank():
def __init__(self, gas_tank=35):
self.gas_tank = gas_tank
def description(self):
print(“This car has gas tank ” + str(self.gas_tank) + “ liters”)
class Car2(Car):
def __init__(self, model, year):
super().__init__(model, year)
self.gas_tank = Gas_tank
audi = Car2('A4', 2017)
audi.gas_tank.description()