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 trialRoss 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))