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 Object-Oriented Python (retired) Objects Create a Class with a Method

I 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?

method.py
class Store:
    open = 10
    close = 18

    def hours(hour):
        return "We're open from {} to {}.".format(hour.open, hour.close)

That's the solution.

class Store:
    open = 10
    close = 18

    def hours(hour):
        return "We're open from {} to {}.".format(open, close)

That's what I mean.

1 Answer

Hi 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!