码迷,mamicode.com
首页 > 编程语言 > 详细

python 分词

时间:2017-11-01 13:35:41      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:mod   搜索   alt   mode   python   class   def   清华大学   key   

 

  1. import jieba  
  2. text = ‘我来到北京清华大学‘  
  3. default_mode =jieba.cut(text)  
  4. full_mode = jieba.cut(text,cut_all=True)  
  5. search_mode = jieba.cut_for_search(text)  
  6. print "精确模式:","/".join(default_mode)  
  7. print "全模式:","/".join(full_mode)  
  8. print "搜索引擎模式:","/".join(search_mode)  
  9. 精确模式: 我/来到/北京/清华大学  
  10. 全模式: 我/来到/北京/清华/清华大学/华大/大学  
  11. 搜索引擎模式: 我/来到/北京/清华/华大/大学/清华大学 

python 分词

标签:mod   搜索   alt   mode   python   class   def   清华大学   key   

原文地址:http://www.cnblogs.com/pxfb/p/7765637.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!