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 trialGurbaj Singh
357 Pointsadmitted = None age = 19 if age > 13: admitted = "true" else: admitted = "false"
the question is asking me to ad else to if and set admitted to false. i keep getting error
admitted = None
age = 19
if age > 13:
admitted = "true"
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsYou can add else
, but you need to comment out the age = 19
. It prevents the challenge grader from exercising the code. True
and False
need to be capitalized, and not written as a string:
admitted = None
# age = 19 # <-- comment out
if age >= 13: # <-- change to '>=' for "13 or more"
admitted = True # <-- capitalize
else:
admitted = False
Eli Goodwin
29,502 PointsEli Goodwin
29,502 Pointsgreat thing the exercise states you need to comment out the age variable! ...