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

Mamadou Diene
seal-mask
.a{fill-rule:evenodd;}techdegree
Mamadou Diene
Python Web Development Techdegree Student 415 Points

I'm going to create a variable named age. I need you to make an if condition that sets admitted to True if age is 13 or

i need help on this one, i am not getting it

conditions.py
admitted = None
age = 13
if age >=13:
    print('admitted')
Gustavo Winter
Gustavo Winter
Courses Plus Student 27,382 Points

Hi, the challange already set the age variable.

You dont need to declare again.

if age >= 13:
   admitted = True

1 Answer

Wade Williams
Wade Williams
24,476 Points

A couple of things here. You don't need to create the "age" variable, this will be created for you when you check your work, so remove that. You're also just printing the word "admitted" and what you want to do is assign the variable admitted to True.

All together:

admitted = None

if age >= 13:
    admitted = True