python初心者です。
python
1A = [['apple', 1],['banana', 2],['orange', 3],['grape', 4]]
Aのようなリストがあり、以下のようにfruitを定義しました。
python
1def fruit(): 2 from operator import itemgetter 3 fruit = A.sort(key=itemgetter(1)) 4 return fruit
期待する結果は下のようなものなのですが、
python
1print(fruit()) 2>>>[['grape', 4],['orange', 3],['banana', 2],['apple', 1]]
実行してみたところ
python
1None
と表示されてしまいます。
どのように改良したらよいかご教示お願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。