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

martin smith
martin smith
197 Points

I'm writing the code as exactly what the question's asking me to and still I fail! Please help.

I've been facing this problem since yesterday. It keeps showing that I'm doing something wrong even though I'm writing the exact same thing that the question is asking me for. Please help!

Thank you.

strings.py
name = "Martin"
subject = "Treehouse Loves {}".format(name)

1 Answer

Jeff Wilton
Jeff Wilton
16,646 Points

Use a lowercase "l" in "loves".

Kenneth Love
Kenneth Love
Treehouse Guest Teacher

Wow, I didn't realize I had made it that picky. Updated it to not care about case. Thanks you two!