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

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

song = '''just colse your eyes,the sun is going downyou‘ll be all right,no one can hurt you nowcome morning light ,you and i ’ll be safe and sound'''str1 = song.replace('’',' ').lower().split()str2 = song.split()c = {}for i in str2:    count = str1.count(i)    c[i] = countword = '''i ’ll you‘ll the '''str3 = word.split()for i in str3:    if i in c.keys():        del (c[i])count = sorted(c.items(),key=lambda items: items[1], reverse=True)for i in range(10):    print(count[i])

转载于:https://www.cnblogs.com/TopHin/p/8649768.html

你可能感兴趣的文章
C语言易混淆关键词详解-const, static, extern, typedef, 声明
查看>>
Redhat Linux从入门到略懂
查看>>
int ,long , long long类型的范围
查看>>
为VM增加磁盘空间
查看>>
OpenCV和PHP的人脸识别技术
查看>>
System.Data.SQLite数据库简介
查看>>
android自带的示例程序 BluetoothChat 变蓝牙串口助手
查看>>
[转]eclipse中的两种Jre 及 Jre与Jdk的区别+[原创]在Myeclipse中配置Javadoc的方法
查看>>
团购网营销策划:推广策略及方法总结
查看>>
sql server2000 完全卸载
查看>>
C#综合揭秘——细说多线程(下)(转载)
查看>>
Visual Studio 2010,给项目添加Post-Build Event的批处理调用。第二次执行Build,就出错。请各位帮忙验证,谢谢!...
查看>>
<cf>Square
查看>>
全局变量的危险
查看>>
提高vs操作效率,vs 2008与vs 2010快捷键总结
查看>>
TABLE 多表头固定问题(基本jquery插件)
查看>>
Android之单元测试
查看>>
关于百度地图坐标转换接口的研究
查看>>
29.案例:递归
查看>>
activity
查看>>