__init__ function is used to initialize the objects it creates. init is short for "initialize". __init__() always takes at least one argument, self, that refers to the object being created. __init__() function sets up each object the class creates.

Add parameters to Car class so we can create it with specific color.