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 trialVladimir 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.