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 trialEmily Strobl
5,429 Pointssorting part 2
i dont know where im going wrong
from operator import itemgetter
fruit_list = [
('apple', 2),
('banana', 5),
('coconut', 1),
('durian', 3),
('elderberries', 4)
]
sorted_fruit = sorted(fruit_list, key=itemgetter(fruit_list))
print(sorted_fruit[1]
2 Answers
Zimri Leijen
11,835 Pointsyou seem to be missing the final )
in print
Ryan McGuire
3,758 PointsI don't think that code will work. You want to use 1 in itemgetter to specify the 2nd "slot" of the tuple.
This code works: sorted_fruit=sorted(fruit_list, key=itemgetter(1)) print(sorted_fruit)
gustavoalvarado
Python Development Techdegree Graduate 11,933 PointsRyan McGuire, You are right!. Here is my code, fixed with your advice (thanks by the way).
from operator import itemgetter
fruit_list = [
('apple', 2),
('banana', 5),
('coconut', 1),
('durian', 3),
('elderberries', 4)
]
sorted_fruit = sorted(fruit_list, key = itemgetter(1))
# My only error before looking at your suggestion.
# i used [] instead of () for itemgetter.
print(sorted_fruit)