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 Use an if

CESAR AGUILAR
seal-mask
.a{fill-rule:evenodd;}techdegree
CESAR AGUILAR
Python Development Techdegree Student 710 Points

i don't get if statements what am i missing?

branching.py
favorite_color = input("What is your favorite color?  ")
if favorite_color == "blue":
print()

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

You 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!!!