''' DS2000 Spring 2020 Source code from lecture - a driver (hah!) that creates Car objects. We make two objects that come from the same class. They both have the same four attributes (make, model, year, price), but the two objects have different values for those attributes. ''' from car import Car def main(): my_car = Car('Powell', 'The Homer') my_car.add_feature('heated seats') your_car = Car('Hillman', 'Minx') your_car.year = 1957 your_car.price = 2500.0 your_car.add_feature('power steering') print('My car is...', my_car.make, my_car.model) print('Your car is...', your_car.make, your_car.model) print('You drive yours, I’ll drive mine.') main()