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

Python Basics, string formatting, cant solve?

Only 20 mins into my learning curve and im stuck on one of the python basics tasks. The task goes:

OK, now use .format() on the string "Treehouse loves {}" to put your name into the placeholder. Assign this to the variable subject (so start with subject =). You do not need to print() anything.

Im simply looking for the solution as im obviously doing something wrong here.

Note: Is it really not possible to just get the correct solution on the course itself?

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

I figured out the correct code, its: subject = "Treehouse loves {}".format(name)

1 Answer

.format() should be placed after the string, like this:

"Treehouse loves {}".format(name)

Haha yea i figured that out as you wrote it, ty so much anyway!