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

Impossible

Help

strings.py
name = "Zeynalka"
subject + Treehouse loves zeynalka

1 Answer

Hello again!

You've got the right start - we just need to change some things around. First, we need an = after 'subject'. Since it's a new variable, we need the equals sign so that we're assigning it a value. We'll start with that:

name = "Zeynalka"
subject = Treehouse loves zeynalka

Now, since 'subject' is a string variable, we need to put quotes around its value:

name = "Zeynalka"
subject = "Treehouse loves zeynalka"

Now, we have your name in the string, but the 'name' variable has that already. That's where we can use our + sign to make it use the name variable:

name = "Zeynalka"
subject = "Treehouse loves " + name     

This way, 'subject' will be saved as "Treehouse loves Zeynalka", because 'name' is set to "Zeynalka".