from collections import Counter
     
sentence = 'teste conaz'
counter = Counter()
     
for word in sentence:
    counter.update(word)

print(counter.most_common())
print(dict(counter.most_common()))