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 trialAbdul haseeb
569 Pointsdon't know why
Now write out to the screen
The color [YOUR FAVORITE COLOR] is my favorite! Where [YOUR FAVORITE COLOR] is using the variable you created in Task 1.
favorite_color='blue'
The color [favorite_color] is my favorite!
2 Answers
Brandon Oakes
Python Web Development Techdegree Student 11,501 PointsNow that you set your variable favorite_color to the value 'blue', you need to put your variable into the desired string the question ask and display (print) your string. Answer below works:
favorite_color = 'blue'
print('The color {} is my favorite!'.format(favorite_color))
You could also utilize concatenation like so:
print( "The color " + favorite_color + " is my favorite!")
But I believe Craig Dennis wants you to utilize .format()
Abdul haseeb
569 PointsThank you Brandon and Craig for helping me out.
Craig Dennis
Treehouse TeacherCraig Dennis
Treehouse TeacherUse the multiple argument version of print...the one with the commas.