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 (2016, retired 2019) Dictionaries String Formatting with Dictionaries

need full code with explanation

couldn't understand

  1. The problem &
  2. Whats wrong in code ?
string_factory.py
# Example:
# values = [{"name": "Michelangelo", "food": "PIZZA"}, {"name": "Garfield", "food": "lasagna"}]
# string_factory(values)
# ["Hi, I'm Michelangelo and I love to eat PIZZA!", "Hi, I'm Garfield and I love to eat lasagna!"]

#template = "Hi, I'm {name} and I love to eat {food}!"
def  string_factory(**kwargs):    
    values = [{"name": "Avtar", "vege": "kia"},{"job":  "Unemployed", "vehicle": "None" }]
    template = [" I'm {name} eats {vege} still {job} dirves {vehicle}"] 
    return template

1 Answer

Steven Parker
Steven Parker
231,007 Points

I'd suggest starting over, and use these hints:

  • read the instructions carefully and do only what they say
  • don't comment-out the provided template — leave it as it is and use it in your function.
  • your function should accept "a list of dictionaries as an argument" (just one argument)
  • you'll need a loop to go through the list of dictionaries
  • in the loop, you'll need a format that uses the template to make a string
  • add the string you make to a new list
  • remember to return the new list after the loop ends