# Directions: Look over the following Car class's attributes and methods. # At the bottom of the page, write a program that uses the Car class to # print the expected results # DO NOT CHANGE ANYTHING IN THE CLASS class Car: # Here, I define default values for my attributes def __init__(self): self.owner = "Mr. Bui" self.year = "1989" self.make = "Honda" self.model = "Accord" self.speed = 0 self.color = "blue" def drive(self): print self.owner, "is cruising down 66 in a", self.color, print self.year, self.make, self.model, "at", self.speed, "mph" def accelerate(self, newSpeed): self.speed = newSpeed def stop(self): self.speed = 0 # Your program should start here myCar = Car() myCar.drive() myCar.accelerate(55) myCar.drive() # 1) What does the program currently print? # # # # 2) Using ONLY myCar and its attributes and methods, make a program # that prints out your name, your dream car, your favorite color, and let's # pretend that you're going 100 mph # DO NOT CHANGE ANYTHING IN THE CLASS DEFINITION