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 trialLuke Walker
274 PointsThe code to accept input for the favorite color has been provided for you.
Err not sure why this doesn't work. I don't understand what the assertion error is complaining about? It works in VSCode
favorite_color = input("What is your favorite color? ")
if favorite_color == "Blue":
print("You must love the sky!")
2 Answers
KRIS NIKOLAISEN
54,971 Pointsblue is lowercase
KRIS NIKOLAISEN
54,971 PointsIf it was accepting input from a user typically you would do something like use the lower method so that case in the answer could be ignored ex:
if favorite_color.lower() == "blue"
Then it wouldn't matter if the input was blue, Blue, BLUE
Luke Walker
274 PointsLuke Walker
274 PointsAh, right. I see. Seems like it would be grammatically incorrect, though? I can see it is lower case with respect to the challenge but if this was user input then wouldn't it be good practice to assume grammatically correct input? Blue is a name and would be upper case, would it not?