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 trialJohn Cuddihy
5,493 Pointswhat is the problem?
keeps saying invalid syntax(<string>, line 6 ????
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
Treehouse TeacherIn a word: indentation. Your else should line up with your if. Otherwise, you're doing great!
Steven Parker
231,236 PointsI 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!
John Cuddihy
5,493 PointsJohn Cuddihy
5,493 PointsThank-you again Jennifer