Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Thomas Katalenas
11,033 Pointsseems to be a treehouse parsing nuance. error 'list object has no attribute .format()
def string_factory(strin, dic):
new_list = []
for i in dic:
new_list.append(strin.format(**i))
print(new_list)
return new_list
3 Answers

Tobias Mahnert
89,413 Pointsoh no, i found the mistake, just swap dic and strin in the method argument section. should be
def string_factory(dic, strin):
and you can remove the print statement

Tobias Mahnert
89,413 Pointstry to put item instead of i

Thomas Katalenas
11,033 Pointsyes thats right!!!
Thanks. I new it was a parsing nuance ;b