zoukankan      html  css  js  c++  java
  • 综合练习:词频统计

    word='''
    Well I wonder could it be
      When I was dreaming about you baby
      You were dreaming of me
      Call me crazy
      Call me blind
      To still be suffering is stupid after all of this time
      Did I lose my love to someone better
      And does she love you like I do
      I do, you know I really really do
      Well hey
      So much I need to say
      Been lonely since the day
      The day you went away
      So sad but true
      For me there's only you
      Been crying since the day
      the day you went away
      I remember date and time
      September twenty second
      Sunday twenty five after nine
      In the doorway with your case
      No longer shouting at each other
      There were tears on our faces
      And we were letting go of something special
      Something we'll never have again
      I know, I guess I really really know
      Why do we never know what we've got till it's gone
      How could I carry on the day you went away
      Cause I've been missing you so much I have to say
      just one last dance
    '''
    symbol=[",",";",".","!","?","'",":","-"]
    words=['t','ve','s','ll']
    new_art=word
    for i in range(len(symbol)):
        new_art=new_art.replace(symbol[i],'')
    
    new_art=new_art.lower()
    art_list=new_art.split()
    
    dic = dict(zip())
    for i in art_list:
        dic[i] = new_art.count(i)
    
    for i in words:
        if(dic.get(i)!=None):
            dic.pop(i)
    
    new_dic = sorted(dic.items(),key=lambda x:x[1],reverse = True)
    for i in range(20):
        print(new_dic[i])

  • 相关阅读:
    SIFT算法详解(转)
    相似图片搜索的原理(二)(转)
    相似图片搜索的原理(转)
    几种常见模式识别算法整理和总结(转)
    Android客户端与服务端交互之登陆示例
    Android中SQLite使用
    音视频转码后合成的一些例子
    Android MediaCodec 使用例子
    (转)H264(NAL简介与I帧判断)
    Android Camera 使用一例,视频聊天app
  • 原文地址:https://www.cnblogs.com/li123/p/8649557.html
Copyright © 2011-2022 走看看