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 Python Basics (2015) Logic in Python Membership

Joseph Duarte
Joseph Duarte
468 Points

I don't know what i'm doing wrong on this Challenge

store_open is not False

1 Answer

Lorenzo Minto
Lorenzo Minto
13,898 Points

Since you haven't posted any code I can't tell you for sure what you did wrong, but my guess is that you might have forgotten to put the else? (you can only omit the else if you have a potential return before). I tried out this code and it works:

if time in store_hours:
   store_open = True
else:
   store_open = False

Hope it helps.