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 trialrandall berry
2,533 Pointsgreater than or equal to
how to write greater than or equal to in python
admitted = None
if admitted
1 Answer
jacobproffer
24,604 PointsHey Randall,
Python has an easy syntax for conditional statements.
In your instance, you'll want to set admitted to True if age is greater than or equal (>=) than 13.
if age >= 13:
admitted = True
Notice how unlike other programming languages, we don't have to wrap our argument in parentheses. It is also important to note the use of a colon and the indent on line two.
You'll use this same structure when setting your else condition.
if age >= 13:
admitted = True
else:
// Set admitted to False here