• 文件方式实现完整的英文词频统计实例


    1.读入待分析的字符串

    2.分解提取单词 

    3.计数字典

    4.排除语法型词汇

    5.排序

    6.输出TOP(20)

    复制代码
    fo=open('dead romance.txt','w')
    fo.write('''in a rainy night
    can you hear me
    in a rainy night
    can you help me
    man,what are you thinking of 
    man,what do you need
    man,nobody tell you what to do
    man ,you need somebody to hurt
    in a rainy night
    can you hear me
    in a rainy night
    can you help me
    man,you feel so lonely
    man,can you hear the message come from the sky
    man,you are driving into the rain
    man,you know it's time to find the prey
    in a rainy night
    can you hear me
    in a rainy night
    can you help me''')
    fo.close()
    
    fo=open('dead romance.txt','r')
    A= fo.read()
    exc={'the','and','to','of','in','a','for','with',''}
    for i in ',.?!
    "':
        A=A.replace(i,' ')
    A=A.lower()
    A=A.split(" ")
    words=set(A)
    dic={}
    keys=set(A)#出现过单词的集合,字典的KEY
    keys=keys-exc
    for i in keys:
        dic[i]=A.count(i)
    w=list(dic.items())
    w.sort(key=lambda x:x[1],reverse=True)
    for i in range(20):
        print(w[i])
    fo.close()
    复制代码

  • 相关阅读:
    第三次随笔作业
    第二次随笔作业
    第一次随笔
    第四次随笔作业
    第三次随笔作业
    第二次随笔作业
    第一次博客
    第四次作业
    第三次作业(2)
    第二次随笔(修改版3)
  • 原文地址:https://www.cnblogs.com/lianghaohui123/p/7598950.html
Copyright © 2020-2023  润新知