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 trialYogeshwaran Govindarajan
459 PointsMy sort works but still I get a 'Bummer, Try again'
from operator import itemgetter
fruit_list = [ ('apple', 2), ('banana', 5), ('coconut', 1), ('durian', 3), ('elderberries', 4) ]
sorted_fruit = sorted(fruit_list,key = itemgetter(1));
print sorted_fruit;
Expected output is to sort based on the second value in each tuple. Input fruit_list = [ ('apple', 2), ('banana', 5), ('coconut', 1), ('durian', 3), ('elderberries', 4) ]
Output [('coconut', 1), ('apple', 2), ('durian', 3), ('elderberries', 4), ('banana', 5)]
I get the following output but the online editor seems to be throwing an error and tell me 'Bummer! Try again'. Any reason why this happens ? Am I understanding the question wrongly ?
from operator import itemgetter
fruit_list = [
('apple', 2),
('banana', 5),
('coconut', 1),
('durian', 3),
('elderberries', 4)
]
sorted_fruit = sorted(fruit_list,key = itemgetter(1));
print sorted_fruit;
2 Answers
Yogeshwaran Govindarajan
459 PointsLooks like there was some bug. I refreshed and tried again and it worked.
Ryan McGuire
3,758 PointsYou have a semi colon at the end of your last two lines. This is not needed. The print function needs parenthesis.
sorted_fruit=sorted(fruit_list, key=itemgetter(1)) print(sorted_fruit)