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

Chastin Davis
PLUS
Chastin Davis
Courses Plus Student 2,299 Points

I need to return a list and a Dict together??

I have the dict and string list i believe. How do I return them using *. Maybe I'm confused about the *.

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(values):
    string_list = []
    new_list = []
    for value in values:
        string_list.append(value["name"])
        new_list.append([template.format(name= value["name"] , food= value["food"])])
        together = string_list + new_list
        return together

1 Answer

Steven Parker
Steven Parker
229,732 Points

Let's ignore the "**" for a moment, you still have some other issues:

  • you don't need a separate list for the name, it's part of the template
  • you don't need to wrap the result of the format in braces to use append on it
  • the return should happen after the loop, not inside it

Now if you fix the issues, you can pass the challenge, but the whole point was to "test unpacking dictionaries" by "using ** for each dictionary". Doing this will greatly simplify the call to format since you only need to pass it "**value" and that will unpack the keyword arguments for you.