-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstats.py
More file actions
85 lines (77 loc) · 1.42 KB
/
stats.py
File metadata and controls
85 lines (77 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
def get_book_text(path):
with open(path) as f:
return f.read()
def get_num_words(text):
words_list = text.split()
return len(words_list)
def get_count_perletter(text):
letter_set = {
"a",
"b",
"c",
"d",
"e",
"f",
"g",
"h",
"i",
"j",
"k",
"l",
"m",
"n",
"o",
"p",
"q",
"r",
"s",
"t",
"u",
"v",
"w",
"x",
"y",
"z",
}
letter_dic = {
"a": 0,
"b": 0,
"c": 0,
"d": 0,
"e": 0,
"f": 0,
"g": 0,
"h": 0,
"i": 0,
"j": 0,
"k": 0,
"l": 0,
"m": 0,
"n": 0,
"o": 0,
"p": 0,
"q": 0,
"r": 0,
"s": 0,
"t": 0,
"u": 0,
"v": 0,
"w": 0,
"x": 0,
"y": 0,
"z": 0,
}
lower_case_text = text.lower()
for letter in lower_case_text:
if letter in letter_set:
letter_dic[letter] += 1
return letter_dic
def give_numbs(each_dir):
return each_dir["nums"]
def sort_letter_count(dir):
list_of_dir = []
for key in dir:
dir_labelled = {"letter": key, "nums": dir[key]}
list_of_dir.append(dir_labelled)
list_of_dir.sort(key=give_numbs, reverse=True)
return list_of_dir