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 trialMamadou Diene
Python Web Development Techdegree Student 415 PointsI'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
admitted = None
age = 13
if age >=13:
print('admitted')
1 Answer
Wade Williams
24,476 PointsA 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
Gustavo Winter
Courses Plus Student 27,382 PointsGustavo Winter
Courses Plus Student 27,382 PointsHi, the challange already set the age variable.
You dont need to declare again.