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 trialRichard Fritts
3,145 PointsNameError: name 'food' is not defined
Name 'food' is defined as class attribute. Why is this not passing into eat function?
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
8,479 PointsRichard 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.