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 trialanthony pizarro
1,983 Pointsusing 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
1 Answer
Steven Parker
231,198 PointsCongratulations on resolving your own issue!
For future reference, you can find a list of operators with their evaluation order precedence in the online Python documentation.
anthony pizarro
1,983 Pointsanthony pizarro
1,983 Pointsnvm i figure it out
age=int(input("what is your age"))
if age >= int(50) print('.....")