class Car(object): # 定义车的方法 def move(self): print('---车在移动---') def stop(self): print('---停车---')# 定义一个销售车的店类class CarStore(object): def order(self): car = Car() # 找一辆车 return car# 1.先得有个销售汽车的店铺car_store = CarStore()# car_store.order().move()# 2.通过这家店订车my_car = car_store.order()# 3.开车爽my_car.move()my_car.stop()