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

Caleb Hicks
Caleb Hicks
276 Points

Class methods problem

I don't know what it wants me to do in the challenge task 2, lesson: class methods. please help!

Jegnesh Gehlot
Jegnesh Gehlot
5,452 Points

Caleb, In task one it want you to create a Store class and create two attributes open and close. In the second one it want you to simply return the values of the attributes under a different method. Here is the code:

class Store(object):
  open = 9
  close = 9
  def hours(self):
    return "We're open from {} to {}. ".format(self.open,self.close)

1 Answer

David Bouchare
David Bouchare
9,224 Points

OK it would be great to see where you are stuck exactly and if you have a snippet of code, even if it is completely wrong, it doesn't matter.

Can you try writing the beginning of the Class maybe?