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 trialRobert Rydlewski
3,828 PointsImpossible !! ?? Why if statement don't work ??
favorite_color = input("What is your favorite color? ") if favorite_color == "blue": print("You must love the sky!"
favorite_color = input("What is your favorite color? ")
if favorite_color == "blue":
print("You must love the sky!")
7 Answers
jhon white
20,006 PointsYou are welcome, be sure to help others too. Good luck!!
jhon white
20,006 PointsYou don't need to indent if statement . Good luck!!
Robert Rydlewski
3,828 PointsAw... well, I miss understood the question ... lol.. Thanks, for your answer. Cheers 🍻
jhon white
20,006 PointsYes, white sapce is matters bc python doesn't have curly braces for the coding blocks.
Robert Rydlewski
3,828 PointsBut the Challenge clearly asking for if statement. I even checked with comments with people who stuck with this challenge. The correct code provide was the same as mine, yet the challenge doesn't accept my answer. What I am missing ???
jhon white
20,006 PointsYour answer is correct, but you indent your if statement , you shoudn't do that. favorite_color = input("What is your favorite color? ") if favorite_color == "blue": print("You must love the sky!")
Robert Rydlewski
3,828 PointsSo Python is not like JavaScript. Empty space matters ??
Robert Rydlewski
3,828 PointsThank You so much for sharing your knowledge. I understood now. :)