Complete the code to access the attribute 'color' of the car object.
print(car.[1])
The attribute 'color' is accessed using dot notation: car.color.
Complete the code to change the 'speed' attribute of the car object to 100.
car.[1] = 100
To modify an attribute, assign a new value using dot notation: car.speed = 100.
Fix the error in the code to correctly access the 'model' attribute of the car object.
print(car[1]model)
Attributes are accessed using dot notation: car.model.
Fill both blanks to create a new attribute 'owner' with value 'Alice' for the car object.
car.[1] = [2]
To add a new attribute, assign a value using dot notation: car.owner = 'Alice'.
Fill all three blanks to print the updated 'year' attribute after changing it to 2025.
car.[1] = [2] print(car.[3])
First, assign the new value to the 'year' attribute, then print it using dot notation.