欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

结巴分词

程序员文章站 2022-07-01 10:41:53
...
import jieba

data=open("D:/data.txt").readlines()
def processs(data):
    m1=map(lambda s:s.strip("\n"),data)
    cut_words=map(lambda s:list(jieba.cut(s)),m1)
    return list(cut_words)

cut_words=processs(data)
print(cut_words)