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

jarius hayes
jarius hayes
1,048 Points

What in the world am i missing? This is so simple, yet has me confused.

I am not understanding how to interpret task 2. I think i may be misunderstanding what it's asking me to do.

strings.py
name = "jay"
subject = format("Treehouse loves {} ", name)

1 Answer

Steven Parker
Steven Parker
231,007 Points

You have the right idea.

But .format() is a string method. That means the template string comes first, then ".format", then the argument(s) in parentheses. So re-arranging what you had already:

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

Also you had an extra space at the end of the template.