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 Adding to our Panda

Problem Creating Method

Hi Team, I create the instance panda_one. The Program does not recognize it even though the program runs fine in the Workspaces. Please Help Me

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

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


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


panda_one = Panda("Bao Bao", 10)
panda_one.eat()

1 Answer

The challenge isn't asking you to create an instance of Panda and use its values for all Pandas. It wants you to use self.name and self.food to allow any given Panda to eat.

If you have another Panda,

panda_two = Panda("Panda 2", 10)
panda_two.food = "leaves"
panda_two.eat()

This will return, with your current code, the string "Bao Bao eats bamboo." instead of the string "Panda 2 eats leaves."