from mustang import Mustang from ram import Ram from leaf import Leaf from crosstrek import CrossTreck from pumpstation import PumpStation from chargingstation import ChargingStation ram = Ram() must = Mustang() tree = Leaf() tree.drive() gas_pump_station = PumpStation() electric_charging_station = ChargingStation() gas_pump_station.add_vehicles(ram) gas_pump_station.add_vehicles(must) electric_charging_station.add_vehicles(tree)
from mustang import Mustang from ram import Ram from leaf import Leaf from crosstrek import Crosstrek mach1 = Mustang() mach1.refuel() mach1.drive() mach1.drive() cummins = Ram() cummins.refuel() cummins.drive() cummins.drive() hippie = Leaf() hippie.refuel() hippie.drive() hippie.drive() busaru = Crosstrek() busaru.refuel() busaru.drive() busaru.drive()
from leaf import Leaf from crosstrek import CrossTrek from pumpstation import PumpStation from chargingstation import ChargingStation ram = Ram() must = Mustang() tree = Leaf() gas_pump_station = PumpStation() electric_charging_station = ChargingStation() gas_pump_station.add_vehicle(ram) gas_pump_station.add_vehicle(must) electric_charging_station.add_vehicle(tree) the_hotness = Mustang() the_hotness.refuel() the_hotness.drive() buzz = Leaf() buzz.refuel() buzz.drive() buzz_growl = CrossTrek() buzz_growl.refuel() buzz_growl.drive()