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

admitted = 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

conditions.py
admitted = None
age = 19
if age > 13:
  admitted = "true"

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,426 Points

You 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

great thing the exercise states you need to comment out the age variable! ...