converter lista de valores em dicionário com base na contagem

counts = dict()
for i in items:
  counts[i] = counts.get(i, 0) + 1
Protelr