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

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

  1. 实例: 下载一首英文的歌词或文章,将所有,.?!等替换为空格,将所有大写转换为小写,统计某几个单词出现的次数,分隔出一个一个的单词。
    a = '''God Is A GirlRemembering me, Discover and see All over the world, She's known as a girl To those who a free, The mind shall be key Forgotten as the past 'Cause history will last God is a girl, Wherever you are, Do you believe it, can you recieve it? God is a girl, Whatever you say, Do you believe it, can you recieve it? God is a girl, However you live, Do you believe it, can you recieve it? God is a girl, She's only a girl, Do you believe it, can you recieve it? She wants to shine, Forever in time, She is so driven, she's always mine Cleanly and free, She wants you to be A part of the future, A girl like me There is a sky, Illuminating us, someone is out there That we truly trust There is a rainbow for you and me A beautiful sunrise ete'''a =a.lower()print('god出现次数为:'+str(a.count('god')))for i in ',','?','!':    a=a.replace(i,' ')a=a.split(' ')print(a)

     

     

  2. 列表实例:由字符串创建一个作业评分列表,做增删改查询统计遍历操作。例如,查询第一个3分的下标,统计1分的同学有多少个,3分的同学有多少个等。
    grade=list('12312133212321')grade=[int(x) for x in grade]print('成绩表:',grade)grade.insert(0,2)print('开始增加分值为2的分数',grade)grade.pop(0)print('删除增加的分数',grade)print('输出第一个3分的同学的下标:',grade.index(3))print('统计1分的同学人数:',grade.count(1))print('统计3分的同学人数:',grade.count(3))

     

  3. 简要描述列表与元组的异同。                                                                           
  4. 列表是可变的数据类型,用方括号显示。元组是不可变的 ,用圆括号显示。两者都可以嵌套。   

转载于:https://www.cnblogs.com/xy123ing/p/7577067.html

你可能感兴趣的文章
C++中“引用”的底层实现
查看>>
jquery datatable 参数
查看>>
vuex中的dispatch和commit
查看>>
mybatis实战教程二:多对一关联查询(一对多)
查看>>
NodeMCU文档中文翻译 3 构建固件
查看>>
前端学习☞jquery
查看>>
10分钟搞懂树状数组
查看>>
Spring Cloud与微服务构建:微服务简介
查看>>
HTTP缓存和CDN缓存
查看>>
HDU-1171 Big Event in HDU(生成函数/背包dp)
查看>>
Babel 是干什么的
查看>>
cocos2dx-3.0(8)------Label、LabelTTF、LabelAtlas、LabelBMFont使用之法
查看>>
Mysql数据库乱码总结
查看>>
BZOJ.3160.万径人踪灭(FFT Manacher)
查看>>
CODE[VS] 1842 递归第一次
查看>>
20180418小测
查看>>
Spring Cloud是怎么运行的?
查看>>
12 联结表
查看>>
数字三角形
查看>>
NGUI 减少drawcall规则
查看>>