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 trialCarl Amess
Courses Plus Student 2,250 Pointshelp I don't get it
i don't get it, where have a gone wrong
name= 'Caed'
subjet = "Treehouse loves {}" + (name)
1 Answer
Sean Manners
14,816 PointsYour syntax is a little off, my friend. Remember, spacing and indentation is everything. Outside of that, in order to place things into space-holders in Python, you need to use .format() to do so.
name = "Caed"
subject = "Treehouse loves {}".format(name)
Good luck!
Carl Amess
Courses Plus Student 2,250 PointsCarl Amess
Courses Plus Student 2,250 PointsThank for your help i had confused myself with the two different methods of joining strings