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 trialGregory Johnson
3,367 Points.format medthod seem to be stuck
it says it doesn't recognize the first line anymore
name = str("Gregory")
subject = "Treehouse loves {} {} " .format(name)
3 Answers
Henrik Christensen
Python Web Development Techdegree Student 38,322 Pointsname = "Gregory" # you don't need to do str() since it's already a str like this
# There should not be a space between " .format()
# Also you only need 1 set of {}
subject = "Treehouse loves {}".format(name)
Gregory Johnson
3,367 Pointsi did name = "Gregory " but when i went to the next step it changed it to name = str("Gregory ") which I thought was odd but figured it didn't matter....what fixed it? Removing the str or removing the second {}?
Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsI think a couple of things fixed it:
# this was your line
subject = "Treehouse loves {} {}" .format(name)
# removing the extra {} would make the challenge fail
# notice the space between the last quotationmark " .format()
# this might make it fail too (but not sure)
subject = "Treehouse loves {}" .format(name)
# this is how it should look like :-)
# no extra {} and no extra spaces :-)
subject = "Treehouse loves {}".format(name)
Gregory Johnson
3,367 Pointsah didn't know spacing was so important..good tip,thank you on that