[Python] collections.Counter
·
Develop/Python
collections.Counter 클래스를 사용하여 데이터의 개수를 효율적으로 셀 수 있다.https://docs.python.org/ko/3/library/collections.html#collections.Counter collections — 컨테이너 데이터형 — Python 3.10.5 문서collections — 컨테이너 데이터형 소스 코드: Lib/collections/__init__.py 이 모듈은 파이썬의 범용 내장 컨테이너 dict, list, set 및 tuple에 대한 대안을 제공하는 특수 컨테이너 데이터형을 구현합니다. nameddocs.python.org collections.Counterfrom collections import CounterCounter('collections..