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 trialfl6
6,900 Pointsfavorite color blue
confusion after the if
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
Python Development Techdegree Student 36,887 PointsHi 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:
- using a particular keyword (in this case
if
); then - finishing the line that declares the block with a colon (':') character; then
- 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