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

victor E
victor E
19,145 Points

I don't know where I am getting this wrong :(

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: 'false'

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:
    'false'

True not 'true' False not 'false'

1 Answer

james south
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
james south
Front End Web Development Techdegree Graduate 33,271 Points

the quotes around true and false are making them strings, not boolean values. remove the quotes to set your variable to true or false. also in the else don't put just false, set the variable to false like you are setting it to true in the if block.

victor E
victor E
19,145 Points

Thank you! I actually tried that but the answer was not passing because I did not capitalize True and False.

But it worked now, once again thanks!