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 trialJerry C
371 PointsWhat'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"
admitted = None
if age >= 13:
admitted = "True"
else:
admitted = "False"
2 Answers
Daniel Gauthier
15,000 PointsHey 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
371 PointsThanks!