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

Juba Cochran
PLUS
Juba Cochran
Courses Plus Student 805 Points

Challenge Task 2 of 2 OK! Make a new variable named subject that concatenates (uses the + sign) the string "Treehouse

here is my code

name = "Juba" subject = "Treehouse loves " print(subject + name)

strings.py
name = "Juba"
subject = "Treehouse loves "
print(subject + name)

2 Answers

Russell Sawyer
seal-mask
.a{fill-rule:evenodd;}techdegree
Russell Sawyer
Front End Web Development Techdegree Student 15,705 Points

H Juba,

The task is asking to you to create the variable subject that contains the string "Treehouse loves " + the name variable. Keep in mind that the challenges will ask something of you very specific so unless it says to add a print statement, adding one in will cause the challenge to think something is wrong.

name = "Juba"
subject = "Treehouse loves " + name
Juba Cochran
PLUS
Juba Cochran
Courses Plus Student 805 Points

ahh ok...That makes sense. I didn't interpret the question that way. Thanks!