1. # 多继承
    2. class House(object):
    3. def live(self):
    4. print("供人居住")
    5. class Car(object):
    6. def drive(self):
    7. print("行驶")
    8. class TouringCar(House, Car):
    9. pass
    10. tour_car = TouringCar()
    11. tour_car.live()
    12. tour_car.drive()