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 trialNkanyiso Ncube
396 Pointshow do i store any result in a variable named .........
user=input("What is your favorite color? ")
name="favorite_color"
1 Answer
Josh Keenan
20,315 PointsI will paste in the answer i gave to the last time you asked:
Here is my solution
favorite_color = input("What is your favorite color? ")
The challenge is asking you to ask for user input, and then save that in a variable called favorite_color
The first line of my code is doing just that, it asks the user for their favorite color and then stores it inside that variable.
The name on the left side of the equals is where you have stored your user input, feel free to ask any other questions I will do my best to help. Hope this makes sense