首页 > 其他 > 详细

期末综合大作业:词频统计

时间:2018-06-20 21:54:30      阅读:178      评论:0      收藏:0      [点我收藏+]
#1
small = open(Just A Girl.txt,mode=r,encoding=utf-8)
smallText = small.read()
small.close()
print(smallText)

#2
replaceList =[?,!,,,.,",:‘‘;]
for c in replaceList:
    smallText = smallText.replace(c, )
print(smallText)

#3
print(smallText.split( ))
smallList = smallText.split( )

#4
smallSet = set(smallList)
print(smallSet)

smallDict = {}
for word in smallSet:
    smallDict[word] = smallList.count(word)
print(smallDict)
for d in smallDict:
    print(d,smallDict[d])

#5
wordCountList = list(smallDict.items())
print(wordCountList)
wordCountList.sort(key=lambda x:x[1],reverse=True)
print(wordCountList)

#6
for i in range(20):
    print(wordCountList[i])

#7
smallCountFile = open(smallCount.txt,mode=a,encoding=utf-8)
for i in range(len(wordCountList)):
    smallCountFile.write(str(wordCountList[i][1])+ +wordCountList[i][0]+\n)
smallCountFile.close()

技术分享图片

期末综合大作业:词频统计

原文:https://www.cnblogs.com/AN23/p/9206255.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!