■ sorted 함수를 사용해 키 값 기준으로 딕셔너리를 정렬하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
sourceDictionary = { 3 : "c", 5 : "a", 4 : "b", 1 : "e", 2 : "d" } sortedTupleList = sorted(sourceDictionary.items(), key = lambda x : x[0], reverse = False) targetDirectory = dict(sortedTupleList) print(targetDirectory) """ { 1 : 'e', 2 : 'd', 3 : 'c', 4 : 'b', 5 : 'a' } """ |