## Python class called Car def Car(make, model, year): """This function creates a new car object""" car = {"make": make, "model": model, "year": year} return car