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 trialJacob Schaefer
1,883 PointsQ2 conditions
I keep getting an error saying "admitted has not been set to false" what am I doing wrong I feel like I have set it the way it says but nothing is working.
admitted = None
if age >= 13:
admitted = bool('True')
else:
admitted = bool('False')
1 Answer
james south
Front End Web Development Techdegree Graduate 33,271 Pointsinstead of trying to bool cast strings, just set admitted to True or False, the actual boolean values. no quotes.