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 trialChris Grazioli
31,225 PointsI don't understand the "category" choices in options.items()? I'm sure we went over this way back when
options is a dict called DEFAULTS what is .items() doing ? where did category come from, was this just arbitrary
1 Answer
jacinator
11,936 Pointsfor category, choices in options.items()
This is using tuple assignment. dict.items()
returns an iterable of tuples to loop over comprised of (key, value)
pairs. The dual assignment allows you to retrieve the key and the value to use in the loop.
Chris Grazioli
31,225 PointsChris Grazioli
31,225 PointsSo essentially its going to take DEFAULTS as it was loaded into the view as options
options.items() gives us an iterable of tuples that gets assigned (category, choice) for (key, value)???
jacinator
11,936 Pointsjacinator
11,936 PointsThat is correct.