Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Object-Oriented Python Advanced Objects Dream Car

Jorge Grajeda
seal-mask
.a{fill-rule:evenodd;}techdegree
Jorge Grajeda
Python Development Techdegree Student 4,983 Points

dream_car.py

I believe I am using the correct string method on this objective and if so why does it keep saying error?

dream_car.py
class DreamCar:
    def __init__(self, make, model):
        self.make = make
        self.model = model

    def __ str__(self):
        return 'My dream car is a {self.make} {self.model}.'

1 Answer

You have a space in def __ str__(self): after the second underscore and before str, which gives the first set of __ a different color in Markdown.

To use an f-string, you can put the letter 'f' before the string. If you don't include the f, the returned string contains the brackets and the names of the variables, and not the values of the variables.