[python]カウンタ()を使用してlist要素の重複数を出力する


collectionsのCounterクラス出力リストの重複要素の数を使用して、ディクソンデータ型に変換できます.
from collections import Counter

counter = Counter(['a', 'b', 'a', 'c', 'b', 'b', 'b'])
print(counter['a'])
print(counter['b'])
print(counter['c'])

print(dict(counter))
結果