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 (2015) Python Data Types String concatenation

Don't understand what this quiz wants from me, in Python Basics

This keeps happening, I type a variable in the exact way I just learned how to and yet as an answer in the quiz it is unacceptable. I've tried subject = "Treehouse loves" + "name" subject = treehouse loves + name subject = "treehouse" + "loves" + "name" subject = "treehouse" + " name" Nothing seems to be acceptable.

strings.py
name = "Melissa"
subject = "Treahouse loves" + "name"

3 Answers

try this:

name = "Melissa"
subject = "Treehouse loves" + name
Afrid Mondal
Afrid Mondal
6,255 Points

Hey Melissa, first correct your string value. It is Treehouse and put a space after loves. Then after + sign use name as a variable not as a string. It will work....

name= "Melissa"
subject = "Treehouse loves " + name

Ok thank you, what worked before I even saw these answers was; subject = "Treehouse loves" + " Melissa". I added a space before my name and used the value of the variable instead of the variable name. From the way the question was worded I had thought I was supposed to enter the variable "name".