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

Riley Wu
Riley Wu
1,843 Points

Add an __init__ method to your class. It should only take the self argument. Inside the method, create an instance attri

I don't know what I did wrong. It keeps saying TypeError

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

    def __init__(self, name, age):
        self.name = name
        self.age = age
        self.is_hungry = True

3 Answers

Steven Parker
Steven Parker
229,785 Points

The instructions say that the new method "should only take the self argument". But the one shown here requires 3 arguments, including 2 that are not asked for in the instructions!

This code actually looks like it might be for a different challenge that comes later in the course, did you perhaps copy it from a question about that other challenge?

i even tried like this:

class Panda:

def init(self, species, food): self.species = 'Ailuropoda melanoleuca' self.food = 'bamboo'

and it was not working

class Panda: species = 'Ailuropoda melanoleuca' food = 'bamboo' is_hungry = 1

def __init__(self):
    self.is_hungry = is_hungry