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 Formatting

Problem with code

name = str("Deja vu") subject = ("Treehouse loves ".format(name)) +"{}" print(subject.format(name))

strings.py
name = ("Deja vu")
subject = str("Treehouse loves ".format(name)) +"{}"
print("Treehouse loves".format(name))

2 Answers

james south
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
james south
Front End Web Development Techdegree Graduate 33,271 Points

you 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.

name = ("Deja vu") subject = str("Treehouse loves {}".format(name))

it wokrs! Thanks!