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

Timothy Hudson
Timothy Hudson
2,574 Points

My code is correct & tests fine in Terminal – why is it not being accepted by Treehouse?

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

This ran perfectly fine in Terminal. Can someone explain what I'm doing wrong here?

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

1 Answer

Ari Misha
Ari Misha
19,323 Points

Hiya there! You're pretty close with this challenge. But your resulting string should be stored in subject variable. Refactor your code to be like this:

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