Skip to content

Commit bc33158

Browse files
authored
Stringpopulation_in_descending order
The program returns a sorted list of the letters in that string from most popular to least popular. eg: input: output: "A man, a plan, a canal: Panama" [(10, 'a'), (6, ' '), (4, 'n'), (2, 'p'), (2, 'm'), (2, 'l'), (1, 'c')] "Testing, attention please." [(5, 't'), (4, 'e'), (3, 'n'), (2, 's'), (2, 'i'), (2, 'a'), (2, ' '), (1, 'p'), (1, 'o'), (1, 'l'), (1, 'g')]
1 parent 229f8d6 commit bc33158

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

stringPopulation

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from collections import defaultdict
2+
import string
3+
def extract_popular(textstring):
4+
"""
5+
Input: string
6+
Output: dictionary with counts for each character in a string
7+
"""
8+
d = defaultdict(int)
9+
exclude = set(string.punctuation)
10+
textstring = textstring.lower()
11+
textstring = ''.join(ch for ch in textstring if ch not in exclude)
12+
for c in textstring:
13+
d[c] += 1
14+
counts = [(d[c], c) for c in d]
15+
counts.sort()
16+
counts.reverse()
17+
return counts
18+
print(extract_popular("A man, a plan, a canal: Panama"))
19+
print(extract_popular("Testing, attention please"))

0 commit comments

Comments
 (0)