How to find the N most common characters in a string with Python

2 Answers

0 votes
from collections import Counter

mc = Counter('python php pascal').most_common(4)

print(mc)


'''
run:
 
[('p', 4), ('a', 2), ('h', 2), (' ', 2)]

'''

 



answered Nov 5, 2018 by avibootz
0 votes
from collections import Counter

mc = Counter('python php pascal').most_common(4)

for item in mc:
    print(item[0], " : ", item[1])


'''
run:
 
p  :  4
h  :  2
   :  2
a  :  2

'''

 



answered Nov 5, 2018 by avibootz

Related questions

...