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

strings.py

def string_factory(string_arg, the_dict):
  for i in the_dict:
    print(string_arg.format(**i))

string_factory(string, dicts)

it works in my console, but error says 'list' object has no attribute

1 Answer

Tobias Mahnert
Tobias Mahnert
89,414 Points

Hi Thomas,

def string_factory(dic, strs):
  strings_array = []
  for item in dic:
    strings_array.append(strs.format(**item))

  return strings_array

Your code looks right to me, maybe try to put it into an array an return it. Cheers toby

Edit: I just found our more or less that your array need to be writed like this "strings_array" instead of just stringsarray