0


python--练习

#P147-See You Again统计频次

import re
fp=open('..\Stu_pack\See You Again.txt','r')
txt=fp.read()
fp.close()

txt=txt.lower()
txt=re.sub('[,.?:"'!-]','',txt)
words=txt.split()
word_sq={}
for each in words:
if each not in word_sq.keys():
word_sq[each]=1
else:
word_sq[each]=word_sq[each]+1
print(word_sq)
res=sorted(word_sq.items(),key=lambda x:x[1],reverse=True)
print(res)

标签: python

本文转载自: https://blog.csdn.net/weixin_54048939/article/details/122052293
版权归原作者 莫奈不生花 所有, 如有侵权,请联系我们删除。

“python--练习”的评论:

还没有评论