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 trialAdam Marasli-Zaade
2,966 PointsI solved it but I have not understood yet why I have to use the argument of the method in the format function?
Why I can't use the name of the variables I have given about the opening and the closing hours?
class Store:
open = 10
close = 18
def hours(hour):
return "We're open from {} to {}.".format(hour.open, hour.close)
That's the solution.
1 Answer
Garrett Guevara
11,331 PointsHi Adam,
The reason is a difficult one to understand, but it's part of how Python handles inheritance. A regular function can operate on its own; but for a method, which is a child of its parent class, it has to be "aware" of its parent to function. To do this, we pass the method the reference "self" by convention.
There's a great explanation as to why we use "self" on stack overflow that will probably explain it better than I can:
http://stackoverflow.com/questions/2709821/what-is-the-purpose-of-self
So typically, your answer would probably look more like:
class Store():
open = 10
close = 18
def hours(self):
return "We're open from {} to {}.".format(self.open, self.close)
Hope this helps and good luck!
Adam Marasli-Zaade
2,966 PointsAdam Marasli-Zaade
2,966 PointsThat's what I mean.