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

itemgetter help

Now create a variable named sorted_fruit that uses sorted() and itemgetter() to sort fruit_list by the second item in each tuple.

sorting.py
from operator import itemgetter
fruit_list = [
    ('apple', 2),
    ('banana', 5),
    ('coconut', 1),
    ('durian', 3),
    ('elderberries', 4)
]

sorted_fruit = sorted(fruite_list , key=itemgetter(0))

3 Answers

Luis Manuel Lopez Hidalgo
seal-mask
.a{fill-rule:evenodd;}techdegree
Luis Manuel Lopez Hidalgo
Full Stack JavaScript Techdegree Student 23,195 Points

You've a typo mistake in fruite_list, and the exercise requires you to extract the second element not the first one, so your index should be 1 instead of 0.

Hope this helps ;)

Thanks for your help

It works

from operator import itemgetter

fruit_list = [
    ('apple', 2),
    ('banana', 5),
    ('coconut', 1),
    ('durian', 3),
    ('elderberries', 4)
]

sorted_fruit = sorted(fruite_list , key=itemgetter(1))