작업 환경 : Python2.7 / Linux
python 중복 카운트 예시
>>> from collections import Counter
>>> a = ['123', '234', '345', '123', '345', '456']
>>> Counter(a)
Counter({'345': 2, '123': 2, '234': 1, '456': 1})
1. Counter 모듈 pip 설치
pip install Counter
2. Counter 중복 카운트 테스트
from collections import Counter
Counter(a)
-> Counter({'345': 2, '123': 2, '234': 1, '456': 1})
result['123']
-> 2
'Development > Python' 카테고리의 다른 글
[Python] 리스트의 중복값들 각각 몇 개씩 있는지 출력 (0) | 2019.11.07 |
---|---|
[Python] python list 값 중복 삭제 방법 : set(sample_list) (0) | 2019.09.06 |
[Python] python 심볼릭 링크 활성화 (symbolic link) (0) | 2019.07.25 |
[Python][Anaconda] How to install Anaconda3 for Windows10 (0) | 2019.07.09 |
[Python][Anaconda3] Python 다른 버전으로 Anaconda3 이용하기 (0) | 2019.07.09 |