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 Types and Branching Comparisons

using if statement

if I want to use an if statement to check if a persons age is equal or greater then, how would I do it?

age = input("what is your age")

if age ==> 50:
print("......")

i know this is wrong but I can't find anywhere how to do it right

how would I write this

nvm i figure it out

age=int(input("what is your age"))

if age >= int(50) print('.....")

1 Answer

Steven Parker
Steven Parker
229,744 Points

Congratulations on resolving your own issue! :+1:

For future reference, you can find a list of operators with their evaluation order precedence in the online Python documentation.