python中读取txt文件、统计其中所有字母出现的频度_Python编程小技巧:如何统计序列中元素的出现频度...
原標題:Python編程小技巧:如何統計序列中元素的出現頻度
實際案例
某隨機序列中,找到出現次數最高的三個元素,他們的出現次數是多少?
對某英文文章的單詞進行詞頻統計,找到出現次數最高的10個單詞,出現次數是多少?
普通做法:
from random import randint# #使用列表解析生成30個元素(在0~20范圍內)data = [randint(0,20) for _ in xrange(30)]print type(data)# 使用列表創建字典.data為key值,value為0c = dict.fromkeys(data,0)print c# 使用for循環遍歷data,遇到一個x,計數器c[x]就會增加1for x in data:
c[x] +=1print c
c1= {k:v for k,v in c.iteritems()}print c1#根據字典的值對于字典的項進行排序,d[1]為值。d[0]為鍵stat = sorted(c.iteritems(),key= lambda d:d[1],reverse=True)print stat
某隨機序列中,找到出現次數最高的三個元素
from random import randintfrom collections import Counter
data = [randint(0,20) for _ in xrange(30)]
c2 = Counter(data)#傳入需要幾個數值smax = c2.most_common(5)
smin = c2.most_common()[:-6:-1]print smaxprint smin
對某英文文章的單詞進行詞頻統計
import re
txt = open('code.txt').read()# print txt# 分割詞:通過非字母字符word = re.split('\W*',txt)# print wordfrom collections import Counter
c3 = Counter(word)# print c3print c3.most_common(10)返回搜狐,查看更多
責任編輯:
總結
以上是生活随笔為你收集整理的python中读取txt文件、统计其中所有字母出现的频度_Python编程小技巧:如何统计序列中元素的出现频度...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Python习题week1
- 下一篇: 访问修饰符作用范围由大到小是_9个jav