概述
分词并去停用词自定义函数:seg_word(sentence)。
import jieba
def seg_word(sentence):
"""使用jieba对文档分词"""
seg_list = jieba.cut(sentence)
# 读取停用词文件
stopword_list = [k.strip() for k in open('stopwords.txt', encoding='utf8').readlines() if k.strip() != '']
# 去除停用词
return list(filter(lambda x: x not in stopword_list, seg_list))
print(seg_word("今天是开心的一天"))
输入一个句子"今天是开心的一天",函数返回值为:[‘今天’, ‘开心’, ‘一天’]。
最后
以上就是淡定往事为你收集整理的分词并去停用词自定义函数:seg_word(sentence)的全部内容,希望文章能够帮你解决分词并去停用词自定义函数:seg_word(sentence)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复