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

Maggie Wolff
Maggie Wolff
495 Points

python basics string formatting challenge task 2 of 2

It's asking for the use of ".format()" and what I entered seems to be incorrect, and I can't pinpoint whats wrong.

strings.py
name = 'Maggie '
subject = 'Treehouse loves {}'
name.format(subject)

2 Answers

Cameron Lauf
PLUS
Cameron Lauf
Courses Plus Student 8,115 Points

Hey Maggie! You need to format your name here. Delete the bottom line and add your .format(name) to the end of subject and it should work for you!

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

You are very close! The code name.format(subject) says format the string name replacing any {} fields with the contents of subject. This is reversed. Instead, you could use the form subject.format(name).

However, this challenge is looking for the format used directly on the string in the same statement:

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

Post back if you need more help. Good luck!!!