标签:lambda 数据 range src 中文 bsp 编码 code 技术总监
1.中软国际华南区技术总监曾老师还会来上两次课,同学们希望曾老师讲些什么内容?(认真想一想回答)
大数据会用到哪些技术?
2.中文分词
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()
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()
标签:lambda 数据 range src 中文 bsp 编码 code 技术总监
原文地址:http://www.cnblogs.com/xujiekai/p/7593925.html