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 would i add his muave in this code

using_input.py
favorite_color = "Red"
color = input("What is your favorite color?  ")
print("the color , favorite_color, is a great color")

1 Answer

Steven Parker
Steven Parker
229,732 Points

First, you need to fix the task 1 code, see my answer to your other question.

Then, you won't need to know what color will be used in testing. You only need to substitute the stored value by one of several possible methods. One way would be to have the variable as a separate argument, which it looks like you were doing; but the variable name needs to be outside of the quotes: It's also important to use the same capitalization and punctuation as shown in the example:

print("The color", favorite_color, "is a great color!")

I got the first task correct no problem its adding his color to the argument im having trouble with

Steven Parker
Steven Parker
229,732 Points

Your code for the first task isn't correct, you got a "false positive" result because you happened to know what value was being used by the tester. Your code should not have any string constants. Use this link to go see my answer to your previous question regarding task 1.

Task 1 must be coded correctly before my suggestion regarding task 2 will be usefuil.