How to convert a counter to a list of element and count pairs in Python

1 Answer

0 votes
from collections import Counter

counter = Counter()
for ch in "python pro":
    counter[ch] += 1

print(counter.items())



'''
run:

dict_items([('p', 2), ('y', 1), ('t', 1), ('h', 1), ('o', 2), ('n', 1), (' ', 1), ('r', 1)])
 
'''

 



answered Jul 26, 2019 by avibootz

Related questions

...