I am currently learning Python with the help of CodeAcademy. My problem may be related to their web application, but my suspicion is I am just wrong on a very fundamental le
yes, you have to remove comma from instance variables. from self.model = model, to self.model = model
from self.model = model, to self.model = model
Nice to see, you are using Class variable concept, "condition" is class variable and "self.model", "self.color", "self.mpg" are instance variables.
condition
self.model
self.color
self.mpg