Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ross Peace
Courses Plus Student 17,401 Pointsitemgetter help
Now create a variable named sorted_fruit that uses sorted() and itemgetter() to sort fruit_list by the second item in each tuple.
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
Full Stack JavaScript Techdegree Student 23,195 PointsYou'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 ;)

Ross Peace
Courses Plus Student 17,401 PointsThanks for your help
It works

Tonye Jack
Full Stack JavaScript Techdegree Student 12,469 Pointsfrom operator import itemgetter
fruit_list = [
('apple', 2),
('banana', 5),
('coconut', 1),
('durian', 3),
('elderberries', 4)
]
sorted_fruit = sorted(fruite_list , key=itemgetter(1))