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 trialTaylor Hardy
680 PointsHi, im looking for the answer to python basics challenge task 1 of 2
Hi, im looking for the answer to python basics challenge task 1 of 2
favorite_color =("blue")
input ("what is your "favorite_color?")
2 Answers
Nathan Thomas
13,477 PointsHi there,
It looks like youβre assigning the incorrect value to the variable favorite_color. For task one of two, you have just one line of code where you assign the result of input() to favorite_color.
The video prior to this code challenge gives examples of this very task, which can help you.
Nathan
toxic
UX Design Techdegree Student 14,790 PointsTask 1
favorite_color = input("What is your favorite color?")
Task 2
favorite_color = input("What is your favorite color?")
print("The color {} is a great color!".format(favorite_color))