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

TypeError: __init__() missing 1 required positional argument: 'is_hungry'

I need some help with part two of this code chalenge

panda.py
# insert your code here
class Panda:
    species = 'Ailuropoda melanoleuca'
    food = 'bamboo' 
    def __init__(self, is_hungry):
        is_hungry = True

2 Answers

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey gabrielalcaraz, you’re almost there.

Task 2 says the __init__ method should only take the self argument. When the checker runs your code, it isn’t expecting to provide any arguments. When it doesn’t, it is your code complaining that there is a missing positional argument. :point_right: remove the parameter is_hungry

When referring to an attribute within the class, use the self. prefix, as in, self.is_hungry

Post back if you need more help. Good luck!!!

thats all I had to do are you kidding me

Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

Most programming errors seem canyon wide, but once its understood, they turn into mere cracks in the sidewalk. Happy to get you back on the path! Happy coding!

boi
boi
14,241 Points

It's stated in the challenge instructions that the def __init__() method will take only the self parameter.