‘壹’ python杈揿嚭瀛楁瘝链澶氱殑鍗曡瘝
print銆俻rint镄勬剰镐濇槸锛历.鍗板埛銆佸嚭鐗堛佹墦鍗般侀摥鍒伙绂n.鍗板埛瀛椾綋娌¢厤妗愩佺増鐢汇佸嵃鍒凤绂adj.鍗板埛镄勚俻rint镄勫熀链镒忔濆彲鎸囧嵃鍒峰搧锛屽嵆鍗版垚鏋鍧︾殑锲剧敾锛屽浘妗堬纴鐗堢敾绛夋垨鐢卞簳鐗囧嵃鍑哄崠闆圭殑镦х墖锛屾槸鍙鏁板悕璇嶃
‘贰’ 利用Python列出最频繁的单词和它们的出现次数
Python2.7上测试通过
importurllib2
importre
fromcollectionsimportCounter
defget_data(url):
resp=urllib2.urlopen(url).read().lower()
returnresp
defanalyse(text,n=1):
'''showthenmostcommonwordsintext'''
res=Counter(re.split(r'W+',text,flags=re.M)).most_common(n)
print('words times')
print(' '.join([k+' '+str(v)fork,vinres]))
defmain():
data=get_data('http://www.umich.e/~umfandsf/other/ebooks/alice30.txt')
analyse(data,10)
main()
结果是
words times
the 1642
and 872
to 729
a 632
it 595
she 553
i 543
of 514
said 462
you 411
‘叁’ 鍒╃敤Python鍒楀嚭链棰戠箒镄勫崟璇嶅拰瀹冧滑镄勫嚭鐜版℃暟
importurllib2
importre
fromcollectionsimportCounter
defget_data(url):
resp=urllib2.urlopen(url).read().lower()
returnresp
defanalyse(text,n=1):
'''showthenmostcommonwordsintext'''
res琛屾𡒄琚=Counter(re.split(r'W+',妗e厔text,flags=re.M)).most_common(n)
print('words times')
print(' '.join([k+' '+str(v)fork,vinres]))
defmain():
data=get_data('
)
analyse(data,10)
main()
娴嬭瘯阃氲繃
缁撴潕琛屾灉鏄锛
words times
the 1642
and 872
to 729
a 632
it 595
she 553
i 543
of 514
said 462
you 411
‘肆’ python濡备綍浠庡瓧绗︿覆涓绛涢夊嚭鍖呭惈璇嶆渶澶氱殑闾d釜瀛楃︿覆锻锛
浠g爜濡备笅锛屼粎渚涘弬钥冿细
‘伍’ 请问如何用python提取出一个txt文件中词频最高的二十个词语并从大到小输出
‘陆’ 用python找出一篇文章中词频最高的20个单词
import re
from collections import Counter
from matplotlib.pyplot import pie,show
f = 't.txt'
c = Counter(re.findall(r'(w{3,})',open(f).read().lower())).most_common(20)
pie([i[1] for i in c],labels=[i[0] for i in c])
show()