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 trialMaciej Znalezniak
111 PointsProblem with code
name = str("Deja vu") subject = ("Treehouse loves ".format(name)) +"{}" print(subject.format(name))
name = ("Deja vu")
subject = str("Treehouse loves ".format(name)) +"{}"
print("Treehouse loves".format(name))
2 Answers
james south
Front End Web Development Techdegree Graduate 33,271 Pointsyou don't need to print if it doesn't say to print. you don't need to cast strings as strings. the curly braces are not added to the string, they go in the string. they are a placeholder, then what is in the format method call goes in them.
Maciej Znalezniak
111 Pointsname = ("Deja vu") subject = str("Treehouse loves {}".format(name))
it wokrs! Thanks!