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

I tried this exercise many times and still can't get through, how can I make admitted to true if I can't have a then?

when age>=13 make an if statement that sets admitted to true, admitted has been assigned a value of none... admitted=None just like that,

conditions.py
admitted = None
if age<13 

1 Answer

Steven Parker
Steven Parker
229,732 Points

A variable can be re-assigned at any time. The fact that it was initially assigned to a certain value does not prevent you from giving it a different value.