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 trialDiwakar 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