Complete the code to define a class named Car.
class [1]: pass
The class name should be Car to match the problem statement.
Complete the code to create an object named my_car from the Car class.
my_car = [1]()To create an object, use the class name Car followed by parentheses.
Fix the error in the method definition to correctly initialize the Car object with a model name.
class Car: def __init__([1], model): [2].model = model
The first parameter of methods in a class should be self, which refers to the object itself.
Fill both blanks to add a method named display_model that prints the car's model.
class Car: def __init__(self, model): self.model = model def [1](self): print(self.[2])
The method should be named display_model and print the attribute model.
Fill all three blanks to create a Car object with model 'Tesla' and call its display_model method.
my_car = [1]([2]) my_car.[3]()
Create the object with Car, pass the model name as a string 'Tesla', and call the method display_model.