Problem
There needs to be a class named Car.
1. Define an instance method with a parameter that automatically refers to the instance being created, along with 3 other parameters: make, year, and color. This method will take in these parameters and assign them to attributes associated with items made from this class. For example, when we make a new Car instance, we'll need to specify a make, year, and color for our instance.
2. Create a 2nd method that puts a car's make, year, and color into one string describing the car. This way, you don't need to print each attribute's value individually.
3. Create a variable named new_car that creates a new Car instance with values using the attributes.
4. Have a print statement that calls the 2nd method that describes the car you have.