Skip to content

Commit

Permalink
cii: Add python version of word count
Browse files Browse the repository at this point in the history
  • Loading branch information
XuShaohua committed Nov 26, 2023
1 parent 93900c7 commit 6578d8f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions cii/tests/word_count.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env python3

import os
import sys


def main():
filename = sys.argv[1]
words = dict()
with open(filename) as fh:
for line in fh.readlines():
for word in line.split():
# if not word[-1].isalpha():
# word = word[:-1]
count = words.get(word, 0)
words[word] = count + 1

for item in sorted(words.keys()):
print(item, "occurs", words[item], "times")


if __name__ == "__main__":
main()

0 comments on commit 6578d8f

Please sign in to comment.