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

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

  1. 实例: 下载一首英文的歌词或文章,将所有,.?!等替换为空格,将所有大写转换为小写,统计某几个单词出现的次数,分隔出一个一个的单词。
    s='''Twinkle, twinkle, little star,How I wonder what you are. Up above the world so high, Like a diamond in the sky. When the blazing sun is gone, When he nothing shines upon, Then you show your little light, Twinkle, twinkle, all the night. Then the traveller in the dark, Thanks you for your tiny spark, He could not see which way to go, If you did not twinkle so. In the dark blue sky you keep, And often through my curtains peep, For you never shut your eye, Till the sun is in the sky. As your bright and tiny spark, Lights the traveller in the dark. Though I know not what you are, Twinkle, twinkle, little star. '''s=s.lower()s=s.replace(',',' ')s=s.replace('.',' ')s=s.replace('?',' ')s=s.replace('!',' ')words=s.split(' ')print(words)print("little出现的次数为:"+str(words.count("little")))print("twinkle出现的次数为:"+str(words.count("twinkle")))

     

  2. 列表实例:由字符串创建一个作业评分列表,做增删改查询统计遍历操作。例如,查询第一个3分的下标,统计1分的同学有多少个,3分的同学有多少个等。

    s=list('1211331131323')print('列表:',s)print('列表长度:',len(s))s=[int(b) for b in s]print('更改为数值型:',s)s.append(3)s.insert(5,2)print('增加后列表:',s)s.pop()s.pop(3)print('删除后列表:',s)print('第一个3分的下标:',s.index(3))print('1分的同学人数:',s.count(1))print('3分的同学人数:',s.count(3))

  3. 简要描述列表与元组的异同。

              答:异:列表是用[ ]表示,元组是用()表示的;  创建了一个列表,你就可以添加,删除,或者是搜索列表中的项目。由于你可以增加或删除项目,我们说列表是可变的数据类型,即这种类型是可以被改变的。而元组通常用在使语句或用户定义的函数能够安全的采用一组值的时候,即被使用的元组的值不会改变。

                    同:列表和元组都是可以嵌套的。

转载于:https://www.cnblogs.com/qisq/p/7574115.html

你可能感兴趣的文章
2018.11.15 Nginx服务器的使用
查看>>
Kinect人机交互开发实践
查看>>
百度编辑器UEditor ASP.NET示例Demo 分类: ASP.NET...
查看>>
JAVA 技术类分享(二)
查看>>
android客户端向服务器发送请求中文乱码的问
查看>>
UOJ#220. 【NOI2016】网格 Tarjan
查看>>
Symfony翻译教程已开课
查看>>
Python模块之pickle(列表,字典等复杂数据类型与二进制文件的转化)
查看>>
通过数据库表反向生成pojo类
查看>>
css_去掉默认样式
查看>>
TensorFlow2.0矩阵与向量的加减乘
查看>>
NOIP 2010题解
查看>>
javascript中的each遍历
查看>>
String中各方法多数情况下返回新的String对象
查看>>
浅谈tcp粘包问题
查看>>
UVA11524构造系数数组+高斯消元解异或方程组
查看>>
排序系列之——冒泡排序、插入排序、选择排序
查看>>
爬虫基础
查看>>
jquery.lazyload延迟加载图片第一屏问题
查看>>
HDU 1011 Starship Troopers (树形DP)
查看>>