码迷,mamicode.com
首页 > 其他好文 > 详细

英文词频统计预备,组合数据类型练习

时间:2017-09-22 21:11:56      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:创建   roo   ada   遍历   with   常用   url   空格   英文   

1,实例: 下载一首英文的歌词或文章,将所有,.?!等替换为空格,将所有大写转换为小写,统计某几个单词出现的次数,分隔出一个一个的单词。

s=‘‘‘Time to say gooodbye, 
quando sono solo sogno all‘orizzonte e mancan le parole si lo so che non c‘e luce 
in una stanza quando manca il sole se non ci sei tu con me, con me su le finestre 
mostra a tutti il mio cuore che hai acceso chiudi dentro me la luce che 
hai incontrato per strada sarah. 
when i‘m alone?
i dream of the horizon and words fail me there is no light 
in a room where there is no sun. 
and there is no sun if you‘re not here with me, with me from every window unfurl my heart 
the heart that you have won into me you‘ve poured the light 
the light that you found by the side of the road time to say goodbye (con te partiro) paesi che non ho mai veduto e vissuto con te adesso si li vivro con te partiro su navi per mari che io lo so 
no no non esistono piu 
it‘s time to say goodbye con te io li vivro time to say goodbye 
places that i‘ve never seen or experienced with you now i shall 
i‘ll sail with you, 
upon ships across the seas seas that exist no more i‘ll revive them with you quando sei lontana‘‘‘
s=s.lower()
s=s.replace(‘,‘,‘ ‘)
s=s.replace(‘.‘,‘ ‘)
s=s.replace(‘?‘,‘ ‘)
s=s.replace(‘!‘,‘ ‘)
words=s.split()
print(words)
print(‘you出现的次数:‘,s.count(‘you‘))

  

  

技术分享

 

 

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

 

n=list(‘89345621115637553‘)
print(n)

print("1分的同学有:",n.count(‘1‘))

print("3分的同学有:",n.count(‘3‘))

n.append(‘8‘)
print(‘增加一个学生成绩8:‘,n)


n[5]=‘5‘
print(‘修改下标为5的同学的分数为3:‘,n)

  技术分享

 

 

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

答: 列表list是处理一组有序项目的数据结构,即可以在一个列表中存储一个序列的项目。列表中的项目。列表中的项目应该包括在方括号中,这样python就知道是在指明表。一旦创建了一个列表,就可以添加,删除,或者是搜索列表中的项目。由于可以增加或删除项目,我们说列表是可变的数据类型,即这种类型是可以被改变的。列表是可以嵌套的。

元组元祖和列表十分相似,不过元组是不可变的。即不能修改元组。元组通过圆括号中用逗号分隔的项目定义。元组通常用在使语句或用户定义的函数能够安全的采用一组值的时候,即被使用的元组的值不会改变。元组可以嵌套。

 

英文词频统计预备,组合数据类型练习

标签:创建   roo   ada   遍历   with   常用   url   空格   英文   

原文地址:http://www.cnblogs.com/YWEIEN/p/7576826.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!