python参考 Pythonの辞書(dict型)をvalue値でソート - プログラミング工場 / PythonPythonのいろいろなデータをソート - プログラミング工場 / Python辞書ソートの参考URLに降順ソートが載ってなかったので、リストのソートと複合してメモ。辞書をvalue値でソート dict = {'A':500, 'B':200, 'C':300, 'D':100, 'E':400} for k, v in sorted(dict.items(), key=lambda x:x[1]): print(k, v) 結果 D 100 B 200 C 300 E 400 A 500 リストを2つ目の値で降順ソート list = [('A', '500'), ('B', '200'), ('C', '300'), ('D', '100'), ('E', '400')] f