mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-04-29 20:26:07 -04:00
useful scripts word frequency
This commit is contained in:
parent
fda02ef3c8
commit
ac0c509a73
10
src/useful_scripts/count_unique_words_frequency.py
Executable file
10
src/useful_scripts/count_unique_words_frequency.py
Executable file
@ -0,0 +1,10 @@
|
||||
#!/usr/bin/python
|
||||
import collections
|
||||
import sys
|
||||
|
||||
def count_unique_word_freq():
|
||||
return collections.Counter(sys.stdin.read().lower().split()).most_common(n)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
count_unique_word_freq()
|
Loading…
x
Reference in New Issue
Block a user