What is the difference between the two? Don't both of these have the same functionality? I don't understand the whole point of the object parameter.
class Car(object): # object parameter
    def foobar():
        print("Hello World!\n")  
vs.
class Car(): # No parameter
    def foobar():
        print("Hello World!\n")
 
     
     
    