Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Anmol Gulati
13,991 PointsNow write out to the screen The color [YOUR FAVORITE COLOR] is my favorite! Where [YOUR FAVORITE COLOR] is using the va
Now write out to the screen
The color [YOUR FAVORITE COLOR] is my favorite! Where [YOUR FAVORITE COLOR] is using the vari
favorite_color = "yellow"
[YOUR FAVORITE COLOR] = "favorite_color"
print("The color",[YOUR FAVORITE COLOR],"is my favorite!")
1 Answer

Philip Schultz
Full Stack JavaScript Techdegree Student 5,242 PointsHey,
Task 1 is asking you to simply make a variable called favorite_color
and set equal to your favorite color. Like so,
favorite_color = 'yellow'
Next, it is asking you to use the variable in a sentence.
favorite_color = 'yellow'
print('The color ' + favorite_color +' is my favorite!')
Hope this helps!
Matthew Fecteau
138 PointsMatthew Fecteau
138 PointsThis answer is very different than the "hint" given.