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

Richard Fritts
Richard Fritts
3,145 Points

NameError: the value for 'food' is not defined

The value for 'food' is established as a class attribute. Why does this not carry over into the function?

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):
        name = 'Boa Bao'
        self.is_hungry = False
        return (f'{name} eats {food}.')

1 Answer

Steven Parker
Steven Parker
230,970 Points

Since it's a class attribute and not a local variable, it needs to be prefixed by "self.".

Also, though "Bao Bao" was used as an example of a name, the challenge didn't intend for that to be established as a static string. Your method should use the attribute which was set by the constructor instead.