赞
踩
目录
首先导入库
- from snownlp import SnowNLP
-
- s = SnowNLP('字太小,而且纸张也不好,有点黑,不过内容应该还不错。和预想的还是有点距离的...')
print(s.words)
print(list(s.tags))
print(s.sentiments)
print(s.pinyin)
print(s.keywords(4))
print(s.summary(1))
print(s.tf)
print(s.idf)
print(s.han)
print(s.sentences)
只能利用非英文语句分割符来将语句分割开,中英文分隔符混用时效果不好=^=
可以用re模块一次指定多个中英文分隔符
- import re
-
- t = '字太小,而且纸张也不好,有点黑,不过内容应该还不错。和预想的还是有点距离的...'
-
- t_list = re.split('[,.;!,。;!]', t)
-
- for i in range(t_list.count('')): #去除空字符串元素
- t_list.remove('')
-
- print(t_list)
Flag:我要成为一个日更选手:)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。