zoukankan      html  css  js  c++  java
  • 英文词频统计

    song='''
    You're the light, you're the night
    You're the color of my blood
    You're the cure, you're the pain
    You're the only thing I wanna touch
    Never knew that it could mean so much, so much
    
    You're the fear, I don't care
    Cause I've never been so high
    Follow me to the dark
    Let me take you past our satellites
    You can see the world you brought to life, to life
    
    So love me like you do, love me like you do
    Love me like you do, love me like you do
    Touch me like you do, touch me like you do
    What are you waiting for?
    
    Fading in, fading out
    On the edge of paradise
    Every inch of your skin is a holy grail I've got to find
    Only you can set my heart on fire, on fire
    Yeah, I'll let you set the pace
    Cause I'm not thinking straight
    My head spinning around I can't see clear no more
    What are you waiting for?
    
    Love me like you do, love me like you do
    Love me like you do, love me like you do
    Touch me like you do, touch me like you do
    What are you waiting for?
    
    Love me like you do, love me like you do
    Love me like you do, love me like you do
    Touch me like you do, touch me like you do'''
    
    symbol = list(''',.?!’:"“”-%$''')
    for i in symbol:
        song = song.replace(i, ' ')
    song = song.lower()
    split = song.split()
    word = {}
    for i in split:
        count = song.count(i)
        word[i] = count
    words = '''
    a an the in on to at and of is was are were i he she you your they us their our it or for be too do no 
    that s so as but it's
    '''
    
    prep = words.split()
    for i in prep:
        # 判断单词是否在字典中
        if i in word.keys():
            del(word[i])
    word = sorted(word.items(), key=lambda item: item[1], reverse=True)
    for i in range(10):
        print(word[i])
  • 相关阅读:
    HTTPS, SPDY和 HTTP/2性能的简单对比
    mysql去除字段内容的空格和换行回车
    jquery获取选中select的文本,值等
    jquery 选择器
    php获取调用本方法的上个方法,php堆栈,函数入库
    php 过滤js字符串代码
    php 获取根目录
    php生成唯一字符串
    php javascript的ajax
    php 上传文件大小控制配置文件中设置的
  • 原文地址:https://www.cnblogs.com/168-hui/p/8646081.html
Copyright © 2011-2022 走看看