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

    song = '''
      sunday's coming i wanna drive my car
    to your apartment with present like a star
    forecaster said the weather may be rainy hard
    but i know the sun will shine for us
    oh lazy seagull fly me from the dark
    i dress my jeans and feed my monkey banana
    then i think my age how old,skyline how far
    or we need each other in california
    you show me your body before night comes down
    i touch your face and promise to stay ever young
    on this ivory beach we kissed so long
    it seems that the passion's never gone
    you sing me your melody and i feel so please
    i want you to want me to keep your dream
    together we'll run wild by a summer symphony
    this is what we enjoyed not a fantasy
    the tin-man's surfing i wanna try my luck
    to the top of tide rip like just have some drugs
    i know you have no blame for my proud moonish heart
    the golden beatnik park
    oh diamond seashore drag me from the yard
    incredible sunward i watch as you're in photograph
    for camera your smile's so sweet,palm trees' so lush
    would you believe my honey it's califoniahttp
    ''' 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 = ''' you to for my i of a is the what me but konw so no we sweet oh ''' 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])
  • 相关阅读:
    页面出现Incorrect string以及数据库内容乱码
    页面中的导航监测
    基于.NET平台常用的框架整理
    强化学习-简介
    强化学习五大方面-奖励与策略结构
    强化学习五大方面-环境
    MSP430G2ET时钟系统
    java每日一练 2020.7.27
    Java多线程
    java每日一练 2020.7.26
  • 原文地址:https://www.cnblogs.com/lk666/p/8649694.html
Copyright © 2011-2022 走看看