#======================================================================================
# The Car class 
#======================================================================================
class Car:
    classType = 'Vehicle'                                       #class static attribute

    @staticmethod                                               #class static method
    def getType():
        return Car.classType

    def __init__(self, make, model):                            #constructor
        self.make  = make                                       #instance attributes
        self.model = model

    def getMake(self):                                          #instance getter methods 
        return self.make

    def getModel(self): 
        return self.model

    def __str__(self):                                          #instance method toString()
        str = "Type: " + Car.classType + ", " \
              "Make: " + self.make + ', Model: ' + self.model
        return str

#======================================================================================