import collections import matplotlib.pyplot as plt l = ['a', 'b', 'b', 'b', 'c'] w = collections.Counter(l) plt.bar(w.keys(), w.values())