Python教程

python对字频统计

本文主要是介绍python对字频统计,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!


问题(1):

txt=open("命运.txt","r").read()
for ch in",。?:":
    txt=txt.replace(ch,"")
d = {}
for ch in txt:
    d[ch]=d.get(ch,0)+1
ls=list(d.items())
ls.sort(key=lambda x:x[1],reverse=True)
a,b=ls[0]
print("{}:{}".format(a,b))

问题(2):

txt=open("命运.txt","r").read()
for ch in '\n':
    txt=txt.replace(ch,"")
d = {}
for ch in txt:
    d[ch]=d.get(ch,0)+1
ls = list(d.items())
ls.sort(key=lambda x:x[1], reverse=True) # 此行可以按照词频由高到低排序
for i in range(10):
    print(str(ls[i])[2],end="")

问题(3):

txt=open("命运.txt","r").read()
for ch in ' \n':
    txt=txt.replace(ch,"")
d = {}
for ch in txt:
    d[ch]=d.get(ch,0)+1
ls = list(d.items())
ls.sort(key=lambda x:x[1], reverse=True) # 此行可以按照词频由高到低排序
string=""
for i in range(len(ls)):
    s=str(ls[i]).strip("()")
    string=string+s[1]+':'+s[5:]+','
f=open("命运-频次排序.txt","w")
f.write(string)
f.close()
这篇关于python对字频统计的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!