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 trialRichard 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
22,687 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,271 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!