我開始對某些csv文檔進行一些文本分析。然而,我的csv文檔有幾個句子,幾乎沒有什麼詞讓我感興趣,所以我想創建一個python代碼來分析這個csv文檔,只留下包含5個以上單詞的句子供我分析,但是我不知道在哪裏開始做我的代碼,並希望得到一些幫助。 例如: 輸入文檔 enter image description here 輸出文檔 enter image description here
我是一個Python初學者,可能它是一個簡單的問題,但我真的陷入困境,需要幫助。我想讓python在.txt文件中出現在另一個文本之上的文本。這裏是我的代碼 x = ''.join(random.choice(string.ascii_uppercase + string.ascii_lowercase + string.digits) for _ in range(5)) with open('
我現在有這樣的句子: text = "This is a car."
然後我用一個tokeniser,然後幹它像這樣: ps = PorterStemmer()
text = word_tokenize(text)
stemmed_words = []
for w in words:
stemmed_words.append(ps.stem(w))
不過,我現在想使用NLT