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

Muhammed Said
Muhammed Said
1,262 Points

cant find it

cant solve it

conditions.py
admitted = None
age >= 13
if age 

1 Answer

Steven Parker
Steven Parker
229,644 Points

Your comparison expression (line 2) looks good. But the word "if" needs to go in front of it, and a colon (":") goes after it.

Then, for the third line, you do an assignment like the one on the top line, but with two changes:

  1. assign "True" instead of "None"
  2. indent it so it will become the body of the "if" statement