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 trialkevenhaynes
1,620 PointsMy code runs in the interpreter but does not pass the check in the exercise window. The only error msg is "Bummer!"
I'm working on the class Store example, and my solution works in multiple interpreters but still does not pass the code test. The only error message is "Bummer!", which is itself a bummer. Any ideas?
class Store: open = 9 close = 6
def hours(self): print("We're open from {} to {}.".format(self.open,self.close))
class Store: ... open = 9 ... close = 6 ...
... def hours(self): ... print("We're open from {} to {}.".format(self.open,self.close)) ... macys = Store() macys.hours() We're open from 9 to 6.
class Store:
open = 9
close = 6
def hours(self):
print("We're open from {} to {}.".format(self.open,self.close))
2 Answers
Jennifer Nordell
Treehouse TeacherYou're doing great! Your code is even functional! However, you missed the line where it says to return the string, not print it. So if you change the print to return your code should pass. Hope this helps!
kevenhaynes
1,620 PointsThanks, Jennifer!! I missed that subtle difference. It works now. :)