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 trialDiego Perez
2,773 PointsWhere is "Pet name:" coming from?
In the video example the console output includes "Pet name:" as a prefix. I know I can get this to print out if I do something like this on the str method:
return f'Pet Name: {self.name}'
But in the video the only method for Dog is init, so where is that string coming from in Megan's example?
1 Answer
Rohald van Merode
Treehouse StaffHey Diego Perez 👋
That is the challenge for this Practice Session. In the video Megan only shows the code that is provided, the starting point for the challenge. You're tasked to add the dunder str
, eq
and iter
methods to the provided code. The end of the video Megan shows what the end result should look like after you have added those methods.
Hope this clears things up! 🙂