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 Functional Python Functional Workhorses Sorting

Andy McDonald
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Andy McDonald
Python Development Techdegree Graduate 13,801 Points

Don'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.

sorting.py
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

Running your code gives a NameError: name 'index' is not defined. Instead of key=itemgetter(index[1]), have you tried key=itemgetter(1)?