标签:内容 exp highlight 技术分享 ems range python log encoding
1.中软国际华南区技术总监曾老师还会来上两次课,同学们希望曾老师讲些什么内容?(认真想一想回答)
大数据能否用于机动化检测以及分析其数据
2.中文分词
import jieba fr=open("复活.txt",‘r‘,encoding=‘utf-8‘) s=list(jieba.cut(fr.read())) exp={‘,‘,‘\n‘,‘.‘,‘。‘,‘”‘,‘“‘,‘:‘,‘…‘,‘ ‘,‘?‘} key=set(s)-exp dic={} for i in key: dic[i]=s.count(i) wc=list(dic.items()) wc.sort(key=lambda x:x[1],reverse=True) for i in range(20): print(wc[i]) fr.close()
import jieba fr=open("复活.txt",‘r‘,encoding=‘utf-8‘) s=list(jieba.cut(fr.read())) key=set(s) dic={} for i in key: if len(i)>1: dic[i]=s.count(i) wc=list(dic.items()) wc.sort(key=lambda x:x[1],reverse=True) for i in range(20): print(wc[i]) fr.close()
标签:内容 exp highlight 技术分享 ems range python log encoding
原文地址:http://www.cnblogs.com/qq1014928301/p/7593589.html