python去除停用词
时间: 2023-06-21 14:11:00 浏览: 82
去停用词_利用python去停用词_
5星 · 资源好评率100%
在Python中可以使用nltk库来移除停用词。下面是一个简单的例子:
```python
import nltk
from nltk.corpus import stopwords
nltk.download('stopwords')
# 输入文本
text = "This is an example sentence to remove stopwords."
# 分词
words = text.split()
# 移除停用词
filtered_words = [word for word in words if word.lower() not in stopwords.words('english')]
# 输出结果
print(filtered_words)
```
输出结果为:
```
['example', 'sentence', 'remove', 'stopwords.']
```
在这个例子中,我们使用了nltk库中提供的英文停用词列表来移除输入文本中的停用词。你也可以使用其他停用词列表,或者自己定义一个停用词列表。
阅读全文