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.

Vladimir Mijalcic
563 Pointsthis isn't working or I don't understand the task
I am having trouble with this "probably" easy task. Either that or I just don't understand this task.
time = 15
store_open = None
store_hours = [9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
If time in store_hours:
store_open = True
else:
store_open = False
3 Answers

Keifer Joedicker
5,869 PointsGo back through and double check your syntax. Remember that python is case sensitive, so any flow control tools wont work if the case is wrong.

Siddhartha Nag
1,180 Pointstry if rather than If...it should work (in your case the I of If is in Capital

Vladimir Mijalcic
563 Pointsgot that thanks a lot. keep forgetting about case sensitivity.

Vladimir Mijalcic
563 PointsThaks a lot.
Vladimir Mijalcic
563 PointsVladimir Mijalcic
563 Pointsgot that thanks a lot. keep forgetting about case sensitivity.