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 Collections (Retired) Dictionaries String Formatting with Dictionaries

seems 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
Tobias Mahnert
89,414 Points

oh 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
Tobias Mahnert
89,414 Points

try to put item instead of i

yes thats right!!!

Thanks. I new it was a parsing nuance ;b