博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
综合练习:词频统计
阅读量:5316 次
发布时间:2019-06-14

本文共 954 字,大约阅读时间需要 3 分钟。

song = '''An empty street,An empty house,A hole inside my heart,I'm all alone,The rooms are getting smaller,I wonder how,I wonder why,I wonder where they are,The days we had,The songs we sang together,Oh yeah,And oh my love,I'm holding on forever,Reaching for a love that seems so far,So i say a little prayer,And hope my dreams will take me there,Where the skies are blue to see you once again, my love,Over seas and coast to coast,To find a place i love the most,Where the fields are green to see you once again, my love'''wordlist1 = song.replace('’',' ').lower().split()wordlist2 = song.split()c = {}for i in wordlist2:    count = wordlist1.count(i)    c[i] = countword = '''i'm you and the an a my i are'''wordlist3 = word.split()for i in wordlist3:    if i in c.keys():        del (c[i])count = sorted(c.items(),key=lambda items: items[1], reverse=True)for i in range(20):    print(count[i])
 

 

转载于:https://www.cnblogs.com/liangyao111/p/8650325.html

你可能感兴趣的文章
mooc- 基本程序设计方法week1,week2
查看>>
Linux常用开发环境软件-Redis安装(docker环境下)
查看>>
v4L2编程
查看>>
sqlserver2008 创建支持文件流的数据库
查看>>
关于时钟
查看>>
DAS,NAS,SAN在数据库存储上的应用
查看>>
javascript的关于刷新页面给出提示框的代码
查看>>
lintcode - 被围绕的区域
查看>>
mysql8用户管理
查看>>
51 Nod 1670 打怪兽
查看>>
根据实例类型反射操作数据库(简单通用表操作类)
查看>>
python实现批量压缩文件夹
查看>>
linux slub分配器浅析
查看>>
TCP的TIME_WAIT状态
查看>>
iOS 设置导航栏的颜色和导航栏上文字的颜色
查看>>
类的进阶
查看>>
Zynq7000开发系列-5(OpenCV开发环境搭建:Ubuntu、Zynq)
查看>>
React.Component(V16.8.6)
查看>>
关于使用indexedDB的本地存储(2)
查看>>
三、SpringBoot-application.properties配置文件和application.yml配置文件
查看>>