Counter는 딕셔너리와 유사한 구조로, 키가 항목이고 값이 빈도를 나타냅니다. 단어 카운터from collections import Countertext = "apple banana apple cherry banana apple"word_counts = Counter(text.split())print(word_counts) # Counter({'apple': 3, 'banana': 2, 'cherry': 1})(Output)Counter({'apple': 3, 'banana': 2, 'cherry': 1}) 숫자 카운터from collections import Counternumbers = [1, 2, 2, 3, 3, 3, 4, 4, 4, 4]counter = Counter(numbers)prin..