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 trial

Python Python Basics Meet Python Create a Variable

Abdul haseeb
Abdul haseeb
569 Points

don'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.

using_variables.py
favorite_color='blue'
The color [favorite_color] is my favorite!

2 Answers

Brandon Oakes
seal-mask
.a{fill-rule:evenodd;}techdegree
Brandon Oakes
Python Web Development Techdegree Student 11,501 Points

Now 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()

Craig Dennis
Craig Dennis
Treehouse Teacher

Use the multiple argument version of print...the one with the commas.

Abdul haseeb
Abdul haseeb
569 Points

Thank you Brandon and Craig for helping me out.