# Object Oriented Python - Video #45 class Get(): ''' A simple class that describes a car ''' def __init__(self, model, cost): ''' Initialize the object ''' self.model = model self.cost = cost def start(self): ''' starts the car ''' print(self.model.title() + " is now starting.") # class vs object myKey1 = Get("audi", "$98k") myKey1.start() print("\nCreating new car ... \n") myKey2 = Get("ford", "$28k") myKey2.start()