from collections import Counter
counter = Counter(['red', 'blue', 'red', 'green', 'blue', 'blue'])
print(counter['blue']) # 'blue'가 등장한 횟수 출력
print(dict(counter)) # 사전 자료형으로 반환
'코테 > Python기법' 카테고리의 다른 글
[Python기법] Sort 기준 정하기 (0) | 2024.03.21 |
---|---|
[Python기법] 배열 출력 . join / * (0) | 2024.03.21 |
[Python기법] heapq (0) | 2024.03.20 |
[Python기법] itertools (0) | 2024.03.20 |
[Python기법] 집합 자료형 (0) | 2024.03.20 |