91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

字符串中單詞的提取與詞頻統計

發布時間:2024-10-01 10:06:34 來源:億速云 閱讀:84 作者:小樊 欄目:編程語言

在Python中,我們可以使用split()函數來提取字符串中的單詞,并使用collections模塊中的Counter類來進行詞頻統計。以下是一個示例:

from collections import Counter

def extract_words(text):
    words = text.split()
    return words

def count_word_frequencies(words):
    word_frequencies = Counter(words)
    return word_frequencies

text = "hello world hello this is a test hello world"

words = extract_words(text)
word_frequencies = count_word_frequencies(words)

print("Words:", words)
print("Word Frequencies:", word_frequencies)

輸出:

Words: ['hello', 'world', 'hello', 'this', 'is', 'a', 'test', 'hello', 'world']
Word Frequencies: Counter({'hello': 3, 'world': 2, 'this': 1, 'is': 1, 'a': 1, 'test': 1})

在這個示例中,我們首先定義了一個名為extract_words的函數,它接受一個字符串參數text,并使用split()函數將其拆分為單詞列表。然后,我們定義了一個名為count_word_frequencies的函數,它接受一個單詞列表參數words,并使用Counter類統計每個單詞出現的次數。最后,我們使用這兩個函數提取文本中的單詞并統計它們的詞頻,然后將結果打印出來。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

民乐县| 富平县| 蕲春县| 卢龙县| 蒙山县| 大渡口区| 大英县| 奇台县| 滁州市| 鹤峰县| 栖霞市| 阜南县| 武威市| 青田县| 赞皇县| 韶关市| 循化| 新龙县| 莆田市| 师宗县| 伊金霍洛旗| 富蕴县| 无为县| 招远市| 南靖县| 固始县| 沙洋县| 潮安县| 贡觉县| 岳池县| 郴州市| 峡江县| 海宁市| 页游| 富宁县| 获嘉县| 内乡县| 柏乡县| 滦南县| 龙里县| 江西省|