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 trialPatrick Fay
116 Pointswhere did the input the color Mauve come from??
favorite_color=input("What is your favorite color?")
print( "What is your favorite color")
print("The color", "favorite_color", "is a great color")
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsThe challenge checker applies various inputs to your code to see if it passes the challenge. In this case, It uses "Mauve" as the text string response to the input
statement. It appears that Test 2 is checking that the color input matches what is in the printed text.
You code needs to remove the quote marks surrounding favorite_color
. With quote marks it is just text and not the variable point to the inputed text.
Post back if you need more help. Good luck!!
<noob />
17,062 Pointsur question isnβt clear what u struggle with the code ?
Chris Freeman
Treehouse Moderator 68,441 PointsThanks for helping out on the forum. I believe he was asking about the challenge Test Results output seen with his given input.
As feedback, your response would be better as a comment under the original post rather than as an answer. Posting a comment as an answer make the post appear to have been answered and thus received less attention that it deserves as a yet unanswered question.
Patrick Fay
116 PointsPatrick Fay
116 PointsAWESOME !!
Thank you Chris!