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 trialCheri Castro
226 PointsChallenge, still being graded as wrong answer.
I followed a suggestion given, and tried the listed code but still getting this error - Bummer! Be sure to use the {}
placeholder and the .format()
method. Any other ideas as to what I'm doing wrong?
name="Cheri"
subject="Treehouse loves {} ".format(name)
5 Answers
Steven Parker
231,236 PointsIt looks like you just have an extra space after the placeholder in your template string. The challenges can be very picky about ouputs!
Cheri Castro
226 PointsThank you, let me check on that.
Cheri Castro
226 PointsThank you, that worked. Ok, so I thought in one of the videos, that it said that we should put a space, so that Python would skip a space between words. I guess in this case. the space wasn't desirable.
Steven Parker
231,236 PointsThat's right, since in this case you're formatting not concatenating.
Cheri Castro
226 PointsOk, I gotta remember to do that, I'm still way new to treehouse.
Steven Parker
231,236 PointsWell, welcome to the community! And happy coding!
Cheri Castro
226 Points:)