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

Python task two

I cannot figure out what I am doing wrong

using_variables.py
The color favorite_color =("Green")
The color favorite_color is my favorite! 

1 Answer

Steven Tagawa
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Steven Tagawa
Python Development Techdegree Graduate 14,438 Points

Hi Leslie!

When it says "write out to the screen" they don't want you to literally type it out on the screen. They want you to write a line of code that, when it runs, will PRINT that sentence on the screen. That means your sentence has to be inside a print() command. Oh, and remember that the parts of your sentence that aren't your variable are literal strings, so they have to be inside quote marks. :)