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 trialBrent Liang
Courses Plus Student 2,944 PointsTrouble with expected output
The question asks for returning a new list built by using .format() of all the dicts in the list onto the given string.
The error message is that "didn't get all expected output". I tried in workspace but couldn't check my output so unable to determine which values are lacking.
What's wrong?
dicts = [
{'name': 'Michelangelo',
'food': 'PIZZA'},
{'name': 'Garfield',
'food': 'lasanga'},
{'name': 'Walter',
'food': 'pancakes'},
{'name': 'Galactus',
'food': 'worlds'}
]
string = "Hi, I'm {name} and I love to eat {food}!"
def string_factory (dicts, string):
new_list = []
for item in dicts:
string.format(**item)
new_list.extend(string)
return new_list
1 Answer
Evan Demaris
64,262 PointsHi Brent,
The extend
method adds a list or iterable to a list. If you provide an iterable to it, then it treats that iterable as a list.
In this case, Python is iterating through your string and adding each letter to your list, instead of adding the string to your list. You can simplify the entire function as follows;
def string_factory(dicts, string):
return [string.format(**item) for item in dicts]
Hope that helps!
Brent Liang
Courses Plus Student 2,944 PointsBrent Liang
Courses Plus Student 2,944 PointsYep thanks Evan! Works perfect