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 Basic Object-Oriented Python Welcome to OOP Creating a Panda Class

Javi Caballero
Javi Caballero
7,422 Points

Add 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

panda.py
# insert your code here
class Panda:
    species = 'Ailuropoda melanoleuca'
    food = 'bamboo'

def __init__(self):
    self.is_hungry == True

1 Answer

Steven Parker
Steven Parker
230,039 Points

There 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
Javi Caballero
7,422 Points

Wow, I feel so dumb now, lol. Thanks for the help!