collections.Counter dict의 서브 클래스로 요소가 키가 되고 개수가 값이 되어 편리하게 개수를 셀 수 있습니다. 예제 1 import collections S = "aaabbccdd" S_counter = collections.Counter(S) print(S_counter) for a, b in S_counter.items(): print(a, b) ''' 실행 결과 Counter({'a': 3, 'b': 2, 'c': 2, 'd': 2}) a 3 b 2 c 2 d 2 ''' 예제 2 import collections L = ["zz", "zz", "zz", "aa", "ab", "ab..