일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- service
- namespace
- aws
- Flutter
- golang
- configmap
- macos
- kubectl
- Java
- RTMP
- 행정구역분류
- Sysinternals
- nginx-media-server
- aws cli
- HLS
- deployment
- docker
- VSCode
- Kubernetes
- Python
- ebpf
- Windows10
- spring cloud config
- Pod
- wireshark
- android studio
- Shell script
- ffmpeg
- Android
- dart
Archives
- Today
- Total
woonizzooni
[Python] dict -> ['(key, value)'] sorted array 만들기 (value로 > 그 이후 key로) 본문
Programming/Python
[Python] dict -> ['(key, value)'] sorted array 만들기 (value로 > 그 이후 key로)
woonizzooni 2020. 10. 10. 18:32value(정수)으로 정렬 후 동일 값일 경우 key로 정렬을 시도할 것이다.
python2.x
- dict.viewitems(), dict.iteritems(), ...
Python 2.7.16 (default, Jun 5 2020, 22:59:21)
[GCC 4.2.1 Compatible Apple LLVM 11.0.3 (clang-1103.0.29.20) (-macos10.15-objc- on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> d={'apple':2, 'banana':3, 'almond':2, 'beetroot':3, 'peach':4}
>>> [(k,v) for k, v in sorted(d.iteritems(), key=lambda(k, v): (-v, k))]
[('peach', 4), ('banana', 3), ('beetroot', 3), ('almond', 2), ('apple', 2)
'
>>> [(k,v) for k, v in sorted(d.iteritems(), key=lambda(k, v): (v, k))]
[('almond', 2), ('apple', 2), ('banana', 3), ('beetroot', 3), ('peach', 4)]
python3.x
- 위 코드 그대로 복붙하면 "SyntaxError: invalid syntax"
- dict.items(), ...
Python 3.7.6 (default, Jan 27 2020, 20:19:29)
[Clang 11.0.0 (clang-1100.0.33.8)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> d = {'apple':2, 'banana':3, 'almond':2, 'beetroot':3, 'peach':4}
>>> [(k,v) for k, v in sorted(d.iteritems(), key=lambda(k, v): (-v, k))]
File "<stdin>", line 1
[(k,v) for k, v in sorted(d.iteritems(), key=lambda(k, v): (-v, k))]
^
SyntaxError: invalid syntax
>>> sorted(d.items(), key=lambda kv: (-kv[1], kv[0]))
[('peach', 4), ('banana', 3), ('beetroot', 3), ('almond', 2), ('apple', 2)]
>>> sorted(d.items(), key=lambda kv: (kv[1], kv[0]))
[('almond', 2), ('apple', 2), ('banana', 3), ('beetroot', 3), ('peach', 4)]
ref
https://docs.python.org/3/howto/sorting.html#sortinghowto
https://www.python.org/dev/peps/pep-3113/
'Programming > Python' 카테고리의 다른 글
locust 실행시 jinja2.ext.do의 KeyError: 'extensions' 에러 (0) | 2021.05.12 |
---|---|
[Python] 대한민국 행정동 데이터 MySQL DB 테이블 생성 예시 (1) | 2019.09.05 |
PyQt5 설치 (Windows 환경에서) (0) | 2019.08.24 |
대한민국 행정동 경계 좌표 추출 #2 - python > GeoJSON (1) | 2019.08.23 |
[PyProj] Proj executable not found. Please set PROJ_DIR variable. (0) | 2019.08.22 |
Comments