Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Tim Burgess
2,552 PointsObject-oriented Python example
What is wrong with this code? It fails to pass the test however when I run it in the Python 2.7 interpreter, it works fine.
class Store(object):
open = 9
close = 16
def hours(self):
return "We're open from {0} to {0}".format(self.open,self.close)
3 Answers

Chris Shaw
26,662 PointsHi Tim,
You have a couple of problems with your return string which is causing the issues.
- You have set
{0}
when instead you just want{}
as you only need to define alphanumeric values when unpacking data - You have left off the full stop at the end of the string.
return "We're open from {} to {}.".format(self.open, self.close)
Hope that helps.

Ryan Carson
23,286 PointsYou don't need to add object
to your Store declaration, as it's implied. So you can just do this:
class Store():
open = 9
close = 16
def hours(self):
return "We're open from {} to {}".format(self.open,self.close)
store = Store()
print(store.hours())

Tim Burgess
2,552 PointsThanks guys.
@Ryan, is object implied for only Python 3? I'm working almost completely in Python 2.7.
And if it is implied, should I not be able to do simply <code>class Store:</code>?

Ryan Carson
23,286 PointsDurrr, you're right, sorry. It'd just be:
class Store:
Sorry!