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 Using Input

how do i find the user imputted color

using_input.py
favorite_color = input("what is your favorite color?")
favorite_color = print("The color[USER INPUTTED COLOR]is a great color")
user_imputted_color = print("purple")

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

In your code, the results of the first line obtaining the user's input is reference by the variable favorite_color. Use this variable to reference the user input.

So, print(favorite_color) would print the response.

Unfortunately, in the second code line, the reference favorite_color is reassigned to the result of the print statement. Print statements do not return a value, so favorite_color now references None

print statement results do not get assigned to a variable name. Remove the assignment from before the print. Then fix the formatting of the printed string to utilize the value contained in the variable favorite_color.

I've left the details for you to work out. You can do this!!

Post back if you need more help. Good luck!!