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

Kourosh G
Kourosh G
1,520 Points

In the workspaces I get the required result, however I get "Bummer! Didn't get all of the results in the output!" msg..

Am I missing something?

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):
    new_list = [template.format(**values[0]),template.format(**values[1])]
    return new_list

1 Answer

Vidhya Sagar
Vidhya Sagar
1,568 Points

The problem with your code is , that you assumed that there are only two dictonary items in the list.I think That was just a blueprint of what the function should do. So go for a for loop, so that no matter how many dictonaries are there in the list ,the compiler will do it explicitly. Try it on your own ,i have also added my code for your reference .

template = "Hi, I'm {name} and I love to eat {food}!"
def string_factory(values):
    op=[]
    for item in values:
        op.append(template.format(**item))
    return op