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

Vladimir Mijalcic
Vladimir Mijalcic
563 Points

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

membership.py
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
Keifer Joedicker
5,869 Points

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

Vladimir Mijalcic
Vladimir Mijalcic
563 Points

got that thanks a lot. keep forgetting about case sensitivity.

try if rather than If...it should work (in your case the I of If is in Capital

Vladimir Mijalcic
Vladimir Mijalcic
563 Points

got that thanks a lot. keep forgetting about case sensitivity.