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