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


    1.读入待分析的字符串

    2.分解提取单词 

    3.计数字典

    4.排除语法型词汇

    5.排序

    6.输出TOP(20)

    str='''We don't talk anymore
    We don't talk anymore
    We don't talk anymore
    Like we used to do 
    We don't laugh anymore
    What was all of it for? 
    We don't talk anymore 
    Like we used to do
    I just heard you found the one you've been lookin'
    The one you been looking for
    I wish i would've konwn that wasn't me 
    Cause even after all this time i still wonder
    Why i can't move on? 
    Just the way you dance so easliy 
    Don't wanna know 
    The kinda dress you're wearin' tonight
    If he's holdin' onto you so tight
    The way i did before
    I overdosed 
    Should've known your love was game
    Now I can't get'cha out of my brain
    Ooh it's such a shame
    We don't talk anymore
    We don't talk anymore 
    We don't talk anymore
    Like we used to do 
    We don't laugh anymore
    What was all of it for?
    We don't talk anymore 
    Like we used to do
    I just hope you'r lyin' next to somebody
    Know it's hard to love ya like me
    Must be a good reason that you're gone
    Every now and then
    I think you might want me to come show up your door
    But I'm just too afraid that i'll be worng
    Don't wanna know 
    If you'ra lookin' into her eyes
    If she's holdin' onto you so tight
    The way i did before
    I overdosed
    Should've know your love was a game 
    Now I can't get'cha out of my brain
    Ooh it's such a shame
    We don't talk anymore
    We don't talk anymore
    We don't talk anymore
    Like we used to do 
    We don't laugh anymore
    What was all of it for? 
    We don't talk anymore
    Like we used to do
    Like we used to do
    Don't wanna know
    The kinda dress you're wearin' tonight
    If he's givin' it to you just right
    The way i did before
    I overdosed
    Should've know your love was a game 
    Now I can't get'cha out of my brain
    Ooh it's such a shame
    We don't talk anymore
    We don't talk anymore
    We don't talk anymore
    Like we used to do 
    We don't laugh anymore
    What was all of it for? 
    We don't talk anymore
    Like we used to do
    We don't talk anymore
    The way did before
    We don't talk anymore
    Ooh 
    Woo
    Ooh it's such a shame
    We don't talk anymore
    '''
    fo=open('D:music.txt','w')
    fo.write(str)
    fo.close
    
    fo=open('D:music.txt','r')
    str=fo.read()
    fo.close()
    for i in ",.?!
    ":
       str=str.replace(i," ")
    str=str.lower()
    str=str.split(" ")
    exc={'to','','of','the','a',"it's",'ooh'}
    words=set(str)
    words=words-exc
    dt={}
    
    for i in words:
       dt[i]=str.count(i)
       
    item=list(dt.items())
    item.sort(key=lambda x:x[1],reverse=True)
    
    for i in range(15):
        print(item[i])

    运行结果:

  • 相关阅读:
    BGP
    ospf路由认证
    rip路由认证
    php-数组的相关函数及排序算法
    php-多维数组,数组遍历
    php-数组的概念,语法及特点
    php-错误处理
    MySQL性能优化
    JUC多线程03
    JUC多线程01
  • 原文地址:https://www.cnblogs.com/Naiky/p/7595125.html
Copyright © 2020-2023  润新知