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

Not getting it

Not understanding it !

conditions.py
admitted = None
if age >= 13

1 Answer

The question says if the age is 13 or more than that then you make the (admitted) equals True so you understood the condition all you have to do is to complete the statement (if the condition is true meaning that the age either equals to 13 or more than that then admitted would be True)

if age >= 13:
     admitted = True

so all you have to say admitted is true . P.S don't forget the colon and to indent the statement after if condition