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 trialAngelica Maria Mendez Gonzalez
Courses Plus Student 357 PointsHow can I convert a false variable to True
admitted = None. Turn this to True using if
admitted = None
if 9 >= 13
print("admitted == True")
else
print("admitted == False")
2 Answers
Jimmy Smutek
Python Web Development Techdegree Student 6,629 PointsYou should re-read the instructions and also double check your syntax.
I suggested re-reading the instructions because you seem to be dong more than what is being asked. The instructions state:
"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 more."
The age variable has already been created by the instructor, and if you break your task down into chunks the only thing you need to do is:
- Check if age is greater than or equal to 13
- If it is, set admitted to True
As for syntax, remember that the syntax for a conditional statement should end with :
, followed by an indented block of code to be executed.
So -
if some_condition:
run_some_code
Or, to be more specific:
if a >= b:
c = True
Hopefully this helps!
Angelica Maria Mendez Gonzalez
Courses Plus Student 357 Pointsadmitted = None if age >= 13: admitted = True
Thank you