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

Jorge Grajeda
seal-mask
.a{fill-rule:evenodd;}techdegree
Jorge Grajeda
Python Development Techdegree Student 4,983 Points

Panda.py

Bummer: TypeError: init() missing 2 required positional arguments: 'name' and 'age'

panda.py
class Panda:
    species = 'Ailuropoda melanoleuca'
    food = 'bamboo'
    name = 'George'

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

    def eat(self):
        self.is_hungry = False
        return '{} eats {}.'.format(self.name, Panda.food)

1 Answer

Steven Parker
Steven Parker
229,744 Points

This challenge asks you to create an __init__ method that "should only take the self argument.", but the one above requires 3 arguments. Also, there's nothing in this challenge about creating an "eat" method.

It looks like you've used code intended for another challenge (further along in the course!) that has different requirements. You'd probably get the most benefit from the course by taking the lessons in order. But if you're skipping around in the course intentionally, be sure to do only what the instructions of each challenge ask for.