Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Lou Dam
428 PointsI need help with a String Challenge question.
So far I have correct answer from Challenge question #1: Make a subject with your name.
name = 'Lou'
Here is the Challenge question#2: Ok! Make a new variable named subject that concatenates (uses the + sign) the string "Treehouse loves" and your name variable.
I need help with Challenge question #2
Thanks. Lou
name = 'Lou'
subject
2 Answers

Aayush Mitra
24,892 PointsHi Lou Dam!
It would be something like this:
name = 'Lou'
subject = "Treehouse Loves " + name
I hope that helps!
Thanks! :)

Lou Dam
428 PointsThanks

Mike Van Amburg
8,544 Pointsname = 'lou' subject = 'Treehouse Loves'
print(name + subject)

Aayush Mitra
24,892 PointsYou do not need to print it. :)

Lou Dam
428 Pointsthanks
Lou Dam
428 PointsLou Dam
428 PointsThanks