found_pos_words 包含了一些词语 请对里面的数据进行停用词的处理,我们有stopwords的停用词表
时间: 2023-06-19 09:02:52 浏览: 100
stopwords.txt
好的,可以使用Python中的nltk库来进行停用词处理。首先需要导入nltk库并下载stopwords:
```python
import nltk
nltk.download('stopwords')
```
然后,可以使用以下代码将found_pos_words中的词语进行停用词过滤:
```python
from nltk.corpus import stopwords
stop_words = set(stopwords.words('english'))
filtered_words = [word for word in found_pos_words if not word in stop_words]
```
其中,stop_words变量存储了英文的停用词表,filtered_words变量存储了过滤后的词语列表。
阅读全文