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.

shivanand ingalagavi
1,409 Pointsstrings.py
OK! Make a new variable named subject that concatenates (uses the + sign) the string "Treehouse loves" and your name variable.
You've probably received an email or two with this subject already!
name = "Shashank"
2 Answers

Haider Ali
Python Development Techdegree Graduate 24,724 PointsYou have passed the first task. Now in the second task, you need to create a new variable that is "Treehouse loves" plus your name:
name = "Shashank"
subject = "Treehouse loves " + name
Concatenation is when you add 2 things (usually strings) together using the plus sign.
Thanks,
Haider

Grigorij Schleifer
10,364 PointsHi shivanand,
try this:
name = "Shashank"
subject = "Treehouse loves " + name
The + sign adds your name to the string and the result is stored inside the subject variable
Makes sense?
Grigorij