class Car:
def __init__(self, type, color):
self.type = type
self.color = color
def get_description(self):
print("This vehicle is a {} {}".format(self.color, self.type))
c = Car("Honda", "blue")
c.get_description()