Step-by-step explanation:
if I did not miss anything, I could only see that the variable "car_model" is initiated by the string "Old Clunker".
I see a function to get the value from the variable.
but I see no code to change the value of the variable.
so, it keeps containing "Old Clunker".
in your function you check if the variable contains "Honda Civic". that check fails, because both strings are different, and so you always either miss the print inside the if-statement or go through the "else" branch.
if there is no way to set the variable to "Honda Civic", this behavior will not change.
you need a function that sets/changes the car_model. or you change the initial string from "Old Clunker" to "Honda Civic" in the code.