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

William Yau
PLUS
William Yau
Courses Plus Student 583 Points

if and else statements conundrum?

I'm sure this code is ok but it want to proceed after the 2nd step lol!

conditions.py
admitted = None
 if age >= 13:
    admitted = True
    else:
        if age!= 13:
            admitted = False

1 Answer

Reyam Marcos
PLUS
Reyam Marcos
Courses Plus Student 10,367 Points

your 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