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

Taylor Hardy
Taylor Hardy
680 Points

Hi, 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

using_input.py
favorite_color =("blue")
input ("what is your "favorite_color?")

2 Answers

Nathan Thomas
Nathan Thomas
13,477 Points

Hi 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

Task 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))