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)

  • 相关阅读:
    [题解]AtCoder Beginner Contest 174
    [高精取模]
    C++知识点—对拍
    C++知识点 STL容器3—map && pair
    致远星的搜索战争 T3 星际穿梭 题解
    洛谷 7月月赛 Div.2 T1 可持久化动态仙人掌的直径问题
    T139631 T3 阶乘之和
    C++知识点 STL容器2—set
    【2020-08-10】轻易的评价反而会阻碍成长
    【2020-08-09】人生十三信条
  • 原文地址:https://www.cnblogs.com/ming-z/p/8649534.html
Copyright © 2011-2022 走看看