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 Conditional Value

Jerry C
Jerry C
371 Points

What's wrong with this if statement (challenge task in Python Basics). I get an error that "admitted` is not False."

admitted = None if age >= 13: admitted = "True" else: admitted = "False"

conditions.py
admitted = None
if age >= 13:
    admitted = "True"
else:
    admitted = "False"

2 Answers

Daniel Gauthier
Daniel Gauthier
15,000 Points

Hey Jerry,

Although the first step allows you to pass with quotation marks around True, you need to remove them from False in order for the challenge to allow you to pass.

The following code will pass:

admitted = None
if age >= 13:
    admitted = True
else:
    admitted = False

Good luck with the course!

Jerry C
Jerry C
371 Points

Thanks!