[Python] collections.Counter
collections.Counter는 리스트나 문자열과 같은 자료형의 요소 중 값이 같은 요소가 몇 개인지를 확인할 때 사용하는 클래스이다. Counter 클래스를 사용하는 방법은 다음과 같다. from collections import Counter # 리스트 생성 my_list = ['a', 'b', 'c', 'a', 'b', 'a', 'c', 'a', 'd', 'a'] # Counter 객체 생성 counter = Counter(my_list) print(counter) # 출력: Counter({'a': 5, 'b': 2, 'c': 2, 'd': 1}) # most_common을 통해 가장 많이 등장한 요소 확인 most_common = counter.most_common(1) print(most..
2023. 6. 10.