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

what is the problem?

keeps saying invalid syntax(<string>, line 6 ????

membership.py
store_open = None
store_hours = [9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
time == 14
if time in store_hours:
  store_open = True
  else :
    store_open = False

2 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

In a word: indentation. Your else should line up with your if. Otherwise, you're doing great! :thumbsup:

Thank-you again Jennifer

Steven Parker
Steven Parker
229,732 Points

:mailbox_with_mail: I got your request. It looks like Jennifer solved your immediate issue before I got here.

But I would add that you also have a stray expression: time == 14. It doesn't hurt anything, in fact it doesn't actually do anything since it's not part of an assignment or an evaluation.

If you were intending to define time yourself, you lucked out since that would have broken the challenge. The challenge defines it for you as part of the "check work" process.

Happy coding! :computer: