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

favorite color blue

confusion after the if

branching.py
favorite_color = input("What is your favorite color?  ")

favorite_color = input("What is your favorite color?  ")
if favorite_color  == input("blue")
print("You must love the sky!")

1 Answer

Alex Koumparos
seal-mask
.a{fill-rule:evenodd;}techdegree
Alex Koumparos
Python Development Techdegree Student 36,887 Points

Hi fl6,

When we start a new block, e.g., by using an if statement, we tell the interpreter that our intent is to create a block by:

  1. using a particular keyword (in this case if); then
  2. finishing the line that declares the block with a colon (':') character; then
  3. indenting all lines that constitute the body of the block by a consistent amount.

As such, your line that begins if needs to a colon character at the end and the subsequent line should be indented (convention is to indent by four characters).

Hope that helps

Alex