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 trial

Python Python Basics (2015) Python Data Types String Formatting

.format medthod seem to be stuck

it says it doesn't recognize the first line anymore

strings.py
name = str("Gregory")

subject = "Treehouse loves {} {} " .format(name)

3 Answers

Henrik Christensen
seal-mask
.a{fill-rule:evenodd;}techdegree
Henrik Christensen
Python Web Development Techdegree Student 38,322 Points
name = "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)

i 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
seal-mask
.a{fill-rule:evenodd;}techdegree
Henrik Christensen
Python Web Development Techdegree Student 38,322 Points

I 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)

ah didn't know spacing was so important..good tip,thank you on that