incastle의 콩나물
python dictionary value를 기준으로 정렬하기, 이중 list의 특정 값 기준 본문
dictionary value를 기준
1. sorted(result, key=lambda x : result[x], reverse=True)
2.
Key로 Value얻기(get)
sorted(result, key=result.get, reverse=True)
list의 특정 value를 기준
sorted(temp_list, key=lamda x:x[원하는 값])
'python' 카테고리의 다른 글
python 시각화, matplotlib (1) (0) | 2019.05.16 |
---|---|
Docker로 Tensorflow 환경 셋팅(jupyter notebook을 이용해) (0) | 2019.05.13 |
[알고리즘] 백준 1152번, 그룹 단어 체커, 문자열 사용하기, python(14) (0) | 2019.04.14 |
[알고리즘] 백준 8958번, OX퀴즈, 1차원 배열 사용하기, python(10) (0) | 2019.04.13 |
[알고리즘] 백준 2739번, 구구단 문제 , for문 활용 예제, python(6) (0) | 2019.04.06 |
Comments