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 trialWilliam Matheny
Python Development Techdegree Graduate 32,198 PointsI am in need of help with the str method using python
I have tried multiple lines of code, and I have been working on this for what seems to have been an hour it would be very helpful if someone could assist me with the answer. Down below is my latest attempt at this challenge, I'm not even sure if I'm close. Anything is helpful.
class DreamCar:
def __init__(self, make, model):
self.make = make
self.model = model
# insert your code here
def __ str__(self):
return f'My dream car is a {self.make} {self.model}.'
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsHey William Matheny, you are so close!
Looking at the colorization of the code above, there is a space before str__
.
This is a syntax error because __
is a valid name for a variable or method.
Post back if you need more help. Good luck!!!
William Matheny
Python Development Techdegree Graduate 32,198 PointsWilliam Matheny
Python Development Techdegree Graduate 32,198 PointsThank you so much, it was correct.