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 trialTiffany Mendoza
1,852 PointsTask 1 is no longer passing
Not sure why task 1 is no longer passing. Any ideas?
name = "Tiffany"
subject = "Treehouse loves "{}.format(name)
3 Answers
Prince Dumezweni Jele
3,166 PointsTask 1 is no longer passing because there is an error in your code. The place holder
- - {} - - goes inside the string quotation marks not outside
Prince Dumezweni Jele
3,166 Pointsname = "MY name"
subject = "Treehouse loves {} ". format(name)
Tiffany Mendoza
1,852 PointsGreat! Thank you!