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.

William Yau
Courses Plus Student 583 Pointsif and else statements conundrum?
I'm sure this code is ok but it want to proceed after the 2nd step lol!
admitted = None
if age >= 13:
admitted = True
else:
if age!= 13:
admitted = False
1 Answer

Reyam Marcos
Courses Plus Student 10,367 Pointsyour code is kinda right , you just added an extra if condition that is not needed anymore , and you have a extra indentation on your else, your else should be in the exact indentation/spaces with your if
admitted = None
if age >= 13:
admitted = True
else:
admitted = False
William Yau
Courses Plus Student 583 PointsWilliam Yau
Courses Plus Student 583 PointsThanks Reyam :D