Last active
April 13, 2016 15:37
-
-
Save dylan4224/f6a521b882b955d0f88c8d1f189a4d24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import jieba | |
| seg_list = jieba.cut("我来到北京清华大学", cut_all=True) | |
| print("Full Mode: " + "/ ".join(seg_list)) | |
| # Full Mode: 我/ 来到/ 北京/ 清华/ 清华大学/ 华大/ 大学 | |
| seg_list = jieba.cut("我来到北京清华大学", cut_all=False) | |
| print("Default Mode: " + "/ ".join(seg_list)) | |
| # Default Mode: 我/ 来到/ 北京/ 清华大学 | |
| seg_list = jieba.cut_for_search("我来到北京清华大学") | |
| print("Search Mode: " + "/ ".join(seg_list)) | |
| # Search Mode: 我/ 来到/ 北京/ 清华/ 华大/ 大学/ 清华大学 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment