Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Richard Kidd
2,228 PointsI passed question one on this quiz, then I add the else statement to the 2nd question and it says the 1st Q failed.
I have no idea what I'm doing wrong. Googled to make sure my code was right.
admitted = None
if age >= 13:
admitted = True
else:
admitted = False
3 Answers

Thomas Fildes
16,201 PointsHi Richard,
The possible reason for this happening is because of the indentation of your conditional statement. The Python challenges are very strict on this. The correct code is displayed below which will pass the challenge:
if age >= 13:
admitted = True
else:
admitted = False

james south
Front End Web Development Techdegree Graduate 33,258 Pointsyour indentation is wrong. the else should be under the if, at the left edge. the two assignments of admitted should be tabbed over once to the right.
if statement
blahblah
else
blahblah

Richard Kidd
2,228 PointsThat worked thanks!