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 trialChuwen Tan
5,786 PointsCan't I writ Panda.food instead of self.food ?
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"{self.name} eats{Panda.food}"
My thought was that food is a class attribute, not an instance attribute. Can't I use Panda.food instead of self.food? I would like to know the reason. Thank you!
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"{self.name} eats{Panda.food}"
1 Answer
Steven Parker
231,236 PointsIn actual practice, class variables can be accessed from inside a method by the class name or by "self". The quiz testing mechanism is looking specifically for a "self" reference. This might be intended to encourage using "self" for both class and instance variables.
If you think it's just a bug in the course, you may want to report this to Support. If they agree, it will get you a "special Exterminator badge".
Chuwen Tan
5,786 PointsChuwen Tan
5,786 PointsGot it. Thank you Steven!