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

    str = '''I can swear I can joke
    I say what's on my mind
    If I drink if I smoke
    I keep up with the guys
    And you see me holding up my middlefinger to the world
    F**k your ribbons and your pearls pearls
    'Cause I'm not just a pretty girl
    I'm more than just a picture
    I'm a daughter and a sister
    Sometimes it's hard for me to show
    That I'm more than just a rumor
    Or a song on your computer
    There's more to me than people know
    Some days I'm broke some days I'm rich
    Some days I'm nice some days I can be a bitch
    Some days I'm strong some days I quit
    I don't let it show but I've been through some shit
    I can swear I can joke
    I say what's on my mind
    If I drink if I smoke
    I keep up with the guys
    And you see me holding up my middlefinger to the world
    F**k your ribbons and your pearls
    'Cause I'm not just a pretty girl
    I'm more than just a number
    I'm a hater I'm a lover
    Sometimes it's hard for me to show
    That I'm more than just a title
    Or a comment going viral
    There's more to me than people know
    Some days I'm broke some days I'm rich
    Some days I'm nice some days I can be a bitch
    Some days I'm strong some days I quit
    I don't let it show
    But I've been through some shit
    I can swear I can joke
    I say what's on my mind
    If I drink if I smoke
    I keep up with the guys
    And you see me holding up my middlefinger to the world
    F**k your ribbons and your pearls
    'Cause I'm not just a pretty girl
    I'm not just a pretty girl
    I'm not just a pretty girl
    No I'm not just a pretty girl
    I can swear I can joke
    I say what's on my mind
    If I drink if I smoke
    I keep up with the guys
    And you see me holding up my middlefinger to the world
    F**k your ribbons and your pearls
    'Cause I'm not just a pretty girl
    I'm not just a pretty girl
    I'm not just a pretty girl
    No I'm not just a pretty girl
    I'm not just a pretty girl'''
    print(str.lower())
    
    sep ='''.,;'!'''
    for c in sep:
        str=(str.replace(c,' '))
    print(str)
    
    
    wordList = str.lower().split()
    
    zd={}
    zd1=set(wordList)
    for w in zd1:
        zd[w] = wordList.count(w)
    print(zd)
    
    
    dictList = list(zd.items())
    dictList.sort(key=lambda x:x[1],reverse=True)
    for w in dictList:
        print(w)

    f = open('11.txt','r')
    text = f.read()
    f.close()
    print(text)

  • 相关阅读:
    在devc++中使用to_string
    死磕Spring之AOP篇
    死磕Spring之AOP篇
    service to hadoop01/hadoop01:8020 Datanode denied communication with namenode because the host is not in the include-list
    Hadoop和HBASE对应兼容版本
    Flink SQL CDC中如何定义watermark和计算列
    Scala函数详解
    HBase 底层原理详解
    流计算 Oceanus SQL 开发指南
    NLP(二十二):基于依存句法的关键词抽取算法
  • 原文地址:https://www.cnblogs.com/ming-z/p/8649534.html
Copyright © 2011-2022 走看看