Contact: aviboots(AT)netvision.net.il
39,941 questions
51,879 answers
573 users
from collections import Counter counter = Counter() for ch in "python pro": counter[ch] += 1 print(dict(counter)) ''' run: {'p': 2, 'y': 1, 't': 1, 'h': 1, 'o': 2, 'n': 1, ' ': 1, 'r': 1} '''