博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
组合数据类型练习,英文词频统计实例
阅读量:6830 次
发布时间:2019-06-26

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

  • 列表实例:由字符串创建一个作业评分列表,做增删改查询统计遍历操作。例如,查询第一个3分的下标,统计1分的同学有多少个,3分的同学有多少个等。
score=list('21223113321')print('作业评分列表:',score)score.append('3')print('增加:',score)score.pop()print('删除:',score)score.insert(2,'1')print('插入:',score)score[2]='2'print('修改:',score)print('第一个3分的下标:',score.index('3'))print('1分的个数:',score.count('1'))print('3分的个数:',score.count('3'))

  • 字典实例:建立学生学号成绩字典,做增删改查遍历操作。
d={
'张三':93,'李四':74,'王五':45,'刘六':66}print('学生成绩字典:',d)d['钱二']=92print('增加:',d)d.pop('刘六')print('删除:',d)d['张三']=73print('修改:',d)print('查询李四成绩:',d.get('李四','无'))

  • 列表,元组,字典,集合的遍历。
ls=list("4613125646")tu=tuple("4613125646")s=set("4613125646")d={
'张三':93,'李四':74,'王五':45,'刘六':66}print("列表:",ls)for i in ls: print(i,end=' ')print("\n")print("元组:",tu)for i in tu: print(i,end=' ')print("\n")print("集合:",s)for i in s: print(i,end=' ')print("\n")print("字典:",d)for i in d: print(i,end='\t') print(d[i],end='\n')

  • 总结列表,元组,字典,集合的联系与区别。

  列表:有序,可做增删改查操作,用方括号[x,y,z]的方式表示

  元组:有序,不可做修改操作,用小括号(x,y,z)的方式表示

  字典:无序,可做增删改查操作,其中组成元素为键值对,用花括号{a:b,c:d}的方式表示

  集合:无序,可由列表创建,其中元素不重复,用花括号{x,y,z}的方式表示

 

  • 英文词频统计实例
    • 待分析字符串
    • 分解提取单词
      • 大小写 txt.lower()
      • 分隔符'.,:;?!-_’
    • 计数字典
    • 排序list.sort()
    • 输出TOP(10)
faded = '''You were the shadow to my lightDid you feel us?Another startYou fade awayAfraid our aim is out of sightWanna see usAliveWhere are you now?Where are you now?Where are you now?Was it all in my fantasy?Where are you now?Were you only imaginary?Where are you now?AtlantisUnder the seaUnder the seaWhere are you now?Another dreamThe monster's running wild inside of meI'm fadedI'm fadedSo lost, I'm fadedI'm fadedSo lost, I'm fadedThese shallow waters never met what I neededI'm letting go a deeper diveEternal silence of the sea. I'm breathing aliveWhere are you now?Where are you now?Under the bright but faded lightsYou've set my heart on fireWhere are you now?Where are you now?Where are you now?AtlantisUnder the seaUnder the seaWhere are you now?Another dreamThe monster's running wild inside of meI'm fadedI'm fadedSo lost, I'm fadedI'm fadedSo lost, I'm faded'''faded = faded.lower()for i in '?!,.\'\n':    faded = faded.replace(i,' ')words = faded.split(' ')dic={}keys = set(words)for i in keys:    dic[i]=words.count(i)c = list(dic.items())c.sort(key=lambda x:x[1],reverse=True)for i in range(10):    print(c[i])

 

转载于:https://www.cnblogs.com/zeson/p/7560628.html

你可能感兴趣的文章
基于AgileEAS.NET SOA 平台SAAS架构技术的开源分销ERP系统-SmartERP.NET下载配置说明
查看>>
16个时髦的扁平化设计的 HTML5 & CSS3 网站模板
查看>>
c++工厂模式(Factory method)
查看>>
[RGEOS]空间拓扑关系
查看>>
java_queue
查看>>
JavaScript escape encodeURI
查看>>
Exchange模式功能
查看>>
Tomcat性能优化(二) 启动参数设置
查看>>
Today See>
查看>>
kiddouk/redisco
查看>>
THEOS makefile
查看>>
基本名字与地址转换
查看>>
深入理解javascript闭包
查看>>
关于分页选中问题-超越昨天的自己系列(9)
查看>>
XML解析中的namespace初探
查看>>
从C#到Objective-C,循序渐进学习苹果开发(2)--Objective-C和C#的差异
查看>>
Jquery实现鼠标拖拽效果
查看>>
标准差(standard deviation)和标准误差(standard error)你能解释清楚吗?
查看>>
[WPF]有滑动效果的进度条
查看>>
妙趣横生的算法--顺序表
查看>>