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

orenbatsoren
orenbatsoren
2,727 Points

Python collections - kwargs.

Hi, i am on this task for few days...

  1. how can i accept a list of dictionaries as an argument?
  2. how to use ** for each dirctory? Thanks, Oren.

Let's test unpacking dictionaries in keyword arguments. You've used the string .format() method before to fill in blank placeholders. If you give the placeholder a name, though, like in template below, you fill it in through keyword arguments to .format(), like this: template.format(name="Kenneth", food="tacos") Write a function named string_factory that accepts a list of dictionaries as an argument. Return a new list of strings made by using ** for each dictionary in the list and the template string provided.

2 Answers

Christopher Shaw
seal-mask
PLUS
.a{fill-rule:evenodd;}techdegree seal-36
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 Points

The function need to accept a list. We simply give this argument a name, i.e. data

We are asked to return a list, so lets create an empty list we can add too.

We then iterate though the list we were passed, unpack the values and format the template string with the values, lastly append it to our empty list.

def string_factory(data):
    list = []
    for value in data:
        list.append(template.format(name=value['name'], food=value['food']))

    return list

Good answer thank you. This topic is the most difficult to grasp... I still dont get it very well.. after researching online.