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 trialKevin Linares
11,214 PointsWhat is wrong with this string?
Im trying to insert 'name' into 'treehouse loves {}' by typing print(subject.format(name)) but it keeps coming out as incorrect. Im confused, what am I doing wrong? Im so sure its all correctly typed too. I tried it all in the python shell tpp and there didn't seem to be any problem at all.
name = 'kevin'
subject = "treehouse loves {}"
print(subject.format(name))
1 Answer
Alexander Davison
65,469 PointsThe challenge isn't asking you to print anything, but to assign the string value (with it formatted!) to the subject
variable.
name = "Kevin"
subject = "Treehouse loves {}".format(name)
Also, keep in mind that Python and the code challenges are really picky. In Python, "treehouse" and "Treehouse" are totally different!
I hope this helps. ~Alex
Kevin Linares
11,214 PointsKevin Linares
11,214 PointsThank you! This really stumped me for awhile.