You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
369 B
12 lines
369 B
import jieba
|
|
from Config.Config import JIEBA_CUSTOM_WORDS
|
|
|
|
# 从配置文件加载自定义词典
|
|
for word in JIEBA_CUSTOM_WORDS:
|
|
jieba.add_word(word)
|
|
|
|
# 分词演示
|
|
text = "文言虚词"
|
|
print("默认模式:", list(jieba.cut(text)))
|
|
print("全模式:", list(jieba.cut(text, cut_all=True)))
|
|
print("搜索引擎模式:", list(jieba.cut_for_search(text))) |