您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Python詞頻統計的方法有哪些,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
分別統計文檔中的單詞,與出現的次數
用兩個列表將其保存起來,最后再用zip()函數連接輸出**
# 導入文件 with open("passage.txt", 'r') as file: dates = file.readlines() # 處理 words = [] for i in dates: words += i.replace("\n", "").split(" ") # 用空字符來代替換行 words +是為了不被覆蓋無+將只有最后一條數據 # print(i.replace("\n","").split(" ")) setWords = list(set(words)) # 集合自動去重 num = [] # 統計一個單詞出現的次數 for k in setWords: count = 0 for j in words: if k == j: count = count + 1 num.append(count) print(num) print(setWords) # 輸出 for x, y in zip(setWords, num): # 將兩個列表用zip結合 print(x + ":" + str(y))、
效果圖:
此方法用來字典,較前一個相對簡潔一點
# 導入 with open("passage.txt", 'r') as file: dates = file.readlines() # 處理 words = [] for i in dates: words += i.replace("\n", "").split(" ") # print(i.replace("\n","").split(" ")) # setWords=list(set(words)) #可以不用這個 print(words) print("-" * 40) # print(setWords) diccount = dict() for i in words: if (i not in diccount): diccount[i] = 1 # 第一遍字典為空 賦值相當于 i=1,i為words里的單詞 # print(diccount) else: diccount[i] = diccount[i] + 1 # 等不在里面的全部遍歷一遍賦值就都在里面了,我們再來記數 print(diccount)
效果圖:
統計的文檔
關于“Python詞頻統計的方法有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。