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 trialAndy McDonald
Python Development Techdegree Graduate 13,801 PointsDon't know how to use itemgetter without the list stating a kwarg
This quiz is asking me to use itemgetter in a way that was not covered in the lesson. I understand passing the keyword as the argument in itemgetter but am not aware of how to use it on a tuple. The only thing that seems to make sense in an index of each tuple but i cant really seem to get that to work.
from operator import itemgetter
fruit_list = [
('apple', 2),
('banana', 5),
('coconut', 1),
('durian', 3),
('elderberries', 4)
]
sorted_fruit = sorted(fruit_list, key=itemgetter(index[1]))
1 Answer
jb30
44,806 PointsRunning your code gives a NameError: name 'index' is not defined. Instead of key=itemgetter(index[1])
, have you tried key=itemgetter(1)
?
Andy McDonald
Python Development Techdegree Graduate 13,801 PointsAndy McDonald
Python Development Techdegree Graduate 13,801 PointsI actually happened to find that in docs.python shortly after I posted... And yes it worked like a charm!