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

John Bartholomew
John Bartholomew
226 Points

I'm working on a strings problem and can't seem to figure out what I'm doing incorrectly.

Can't figure this out.

strings.py
name="ryan"
subject="Treehouse loves "+"Ryan"

2 Answers

Albert G
Albert G
4,142 Points

they want you to use a variable for the second part of the challenge so the correct solution would be

 subject = 'Treehouse loves ' + name 

You might find it funny but change the

name="Ryan"

And the same code would work fine. Probably because that's how they are testing our code.

But yes they want you to use variable name rather than the value in name variable itself.