Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Diwakar Singh
Courses Plus Student 1,621 Pointshelp me with dictionary unapacking
unpacking
# 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(
1 Answer

William Harrison
9,585 PointsFirst you will need to define your function to be passed a dictionary.
def string_factory(list_of_dict):
Then you will need to start a list, for the return/output.
list = []
Now you will need to loop through all of the entries in the dictionary. This will set a loop to start at 0 and run to the length of the dictionary.
for item_count in range(0, len(list_of_dict)):
Now this line appends the list variable with the template.format(name = [the first dict ][key] , food = [the first dict][value]
list.append(template.format(name=list_of_dict[item_count]["name"], food=list_of_dict[item_count]["food"]))
then return the list
return list