Notice
Recent Posts
Recent Comments
Archives
반응형
«   2025/01   »
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
26 27 28 29 30 31
Today
Total
01-09 05:35
250x250
관리 메뉴

꿈꾸는 개발자의 블로그

[Python] 딕셔너리(Dictionary) 키(Key), 값(Value) 기준으로 정렬하기 본문

Programming/Python

[Python] 딕셔너리(Dictionary) 키(Key), 값(Value) 기준으로 정렬하기

aldrn29 2022. 5. 31. 17:59

딕셔너리(Dictionary) 키(key), 값(Value) 기준으로 정렬하기

딕셔너리는 { 키(Key) : 값(Value) }의 쌍으로 이루어져 있기 때문에 각 요소에 대해 정렬하는 방법이 다르다. 기본적으로 오름차순 정렬이며, reverse=True를 해주면 내림차순이 된다.

 

키(Key)를 기준으로 정렬

sorted(dic.items())					# 오름차순 정렬
sorted(dic.items(), reverse=True)			# 내림차순 정렬

값(Value)을 기준으로 정렬

sorted(dic.items(), key=lambda x:x[1])			# 오름차순 정렬
sorted(dic.items(), reverse=True, key=lambda x:x[1]) 	# 내림차순 정렬

 

728x90
728x90
Comments