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 trialJavi Caballero
7,422 PointsAdd an __init__ method to your class. It should only take the self argument. Inside the method, create an instance attri
It's probably obvious, but I just don't see what's wrong lol. It says the instance attribute needs to be set to self, and equal to true
# insert your code here
class Panda:
species = 'Ailuropoda melanoleuca'
food = 'bamboo'
def __init__(self):
self.is_hungry == True
1 Answer
Steven Parker
231,198 PointsThere are two issues here:
- to be considered part of the class, the method definition must be indented
- an assignment operator is a single
=
symbol, a double==
is an equality comparison
Javi Caballero
7,422 PointsJavi Caballero
7,422 PointsWow, I feel so dumb now, lol. Thanks for the help!