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 trialCESAR AGUILAR
Python Development Techdegree Student 710 Pointsi don't get if statements what am i missing?
favorite_color = input("What is your favorite color? ")
if favorite_color == "blue":
print()
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsYou are very close! The if
statement will execute a suite, or block of code, if the specified condition is met. You have the condition correct. The colon ā:ā at the end of the state is a visual reminder that a block of code must follow this statement. All code statement in the block of code must be indented. The style standard is to indent 4 spaces (See PEP 8 for more info on standard styling practices.)
š Indent the print statement 4 spaces and add the quoted text string inside its parens
Post back if you need more help. Good luck!!!
CESAR AGUILAR
Python Development Techdegree Student 710 PointsCESAR AGUILAR
Python Development Techdegree Student 710 PointsThank you Sir