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

sorting part 2

i dont know where im going wrong

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(fruit_list))
print(sorted_fruit[1]

2 Answers

you seem to be missing the final ) in print

Ryan McGuire
Ryan McGuire
3,758 Points

I 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
seal-mask
.a{fill-rule:evenodd;}techdegree
gustavoalvarado
Python Development Techdegree Student 7,274 Points

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