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: name 'food' is not defined

Name 'food' is defined as class attribute. Why is this not passing into eat 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

Andy Hughes
Andy Hughes
8,478 Points

Richard Fritts - It's your return statement. You're class method and functions make reference to self. So your return statement calls should also reflect this.

See if that helps you figure out the correct return statement. If not, ask again and I'll try to give you another hint.