摘要: 中文分词 1、安装 pip install jieba 2、使用 import jieba # 全模式 text = "我来到中国北京天安门" seg_list = jieba.cut(text, cut_all=True) print(" ".join(seg_list)) # 我 来到 中国 北 阅读全文
posted @ 2019-09-12 10:30 洛丶丶丶 阅读(321) 评论(0) 推荐(0) 编辑