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)

  • 相关阅读:
    [工具-002]把png图片转换成ico图标
    软件攻城狮究级装B指南
    [翔哥高手无敌之路]0-002.如何提取apk中的信息?
    [Python基础]003.语法(2)
    [COCOS2DX-LUA]0-001.利用ClippingNode实现放大镜功能
    [书籍分享]0-005.淘宝技术这十年
    [翔哥高手无敌之路]0-001.项目有多余资源?那就删除吧!
    [Python基础]002.语法(1)
    [Objective-C] 001_Hello Objective-C
    DB2 pureXML 动态编程组合拳:iBatis+BeanUtils+JiBX
  • 原文地址:https://www.cnblogs.com/ming-z/p/8649534.html
Copyright © 2011-2022 走看看