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 (Retired) Dictionaries Unpacking Dictionaries

Joe Law
Joe Law
5,040 Points

Question: Get information from more than one dictionary.

Hey people, the video showed us how to unpack from one dictionary, what if i wanted to unpack from more than one dictionary?

1 Answer

C H
C H
6,587 Points

Do you mean unpacking dictionaries held in a list such as in the challenge? If so, just iterate over the list:

In the for loop 'key' acts as the variable name holding the dictionary, which changes every loop. So, if a key-name in the dictionary matches the key-name in the string the value will be filled in.

def anything(list_of_dicts, astring):
  new_list = []
  for key in list_of_dicts:
    new_list.append(astring.format(**key))
  return new_list
Joe Law
Joe Law
5,040 Points

Thank you Christopher!