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 trialMike Roberts
173 PointsStrings, positing with 'format()'. I have attempted every variation to complete this task and it is not working.
What am I missing?
name = """Michael"""
subject = """Treehouse loves {}"""
(subject.format(name))
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, Mike! I'd be interested to know what you tried first because my gut instinct says it was probably closest then. I feel like at this point you might have overthought it. So I'm going to give some hints:
- The solution to this is two lines
- You do not need triple double quotes on either side of your string. Ie
"Michael"
instead of"""Michael"""
- The line that contains
subject =
should also have the.format
Hope this helps, but let me know if you're still stuck!