综合练习:英文词频统计(代码片段)

144+粱肇森 144+粱肇森     2022-10-28     130

关键词:

  1. 词频统计预处理
  2. 下载一首英文的歌词或文章
  3. 将所有,.?!’:等分隔符全部替换为空格
  4. 将所有大写转换为小写
  5. 生成单词列表
  6. 生成词频统计
  7. 排序
  8. 排除语法型词汇,代词、冠词、连词
  9. 输出词频最大TOP10
song=\'\'\'
Trouble will find you no matter where you go, oh oh

No matter if you;re fast, no matter if you;re slow, oh oh

The eye of the storm wanna cry in the morn, oh oh

You;re fine for a while but you start to lose control

He;s there in the dark, he;s there in my heart

He waits in the wings, he;s gotta play a part

Trouble is a friend, yeah trouble is a friend of mine

Ahh..

Trouble is a friend, but trouble is a foe, oh oh

And no matter what I feed him he always seems to grow, oh oh

He sees what I see and he knows what I know, oh oh

So don;t forget as you ease on down my road

He;s there in the dark, he;s there in my heart

He waits in the wings, he;s gotta play a part

Trouble is a friend, yeah trouble is a friend of mine

So don;t be alarmed if he takes you by the arm

I roll down the window, I;m a sucker for his charm

Trouble is a friend, yeah trouble is a friend of mine

Ahh..

How I hate the way he makes me feel

And how I try to make him leave

I try, oh oh I try

He;s there in the dark, he;s there in my heart

He waits in the wings, he;s gotta play a part

Trouble is a friend, yeah trouble is a friend of mine

So don;t be alarmed if he takes you by the arm

I roll down the window, I;m a sucker for his charm

Trouble is a friend, yeah trouble is a friend of mine
\'\'\'

song=song.replace(";"," ").replace(","," ").replace("."," ")
song=song.lower()
song=song.split()
dict=
for key in song:
    dict[key]=song.count(key)
can=\'of\',\'be\',\'m\',\'if\',\'and\',\'will\',\'re\',\'but\',\'what\',\'so\',\'how\'
for key in can:
    del dict[key]
dict=sorted(dict.items(),key=lambda e:e[1],reverse=True)
for key in range(10):
    print(dict[key])

 

运行截图:

 

综合练习:英文词频统计(代码片段)

词频统计预处理下载一首英文的歌词或文章将所有,.?!’:等分隔符全部替换为空格将所有大写转换为小写生成单词列表生成词频统计排序排除语法型词汇,代词、冠词、连词输出词频最大TOP10song=‘‘‘Ifyousayyou’rethefireworkatthe... 查看详情

综合练习:英文词频统计(代码片段)

词频统计预处理下载一首英文的歌词或文章将所有,.?!’:等分隔符全部替换为空格将所有大写转换为小写生成单词列表生成词频统计排序排除语法型词汇,代词、冠词、连词输出词频最大TOP10song=‘‘‘Troublewillfindyounomatterwherey... 查看详情

综合练习:词频统计(代码片段)

综合练习词频统计预处理下载一首英文的歌词或文章将所有,.?!’:等分隔符全部替换为空格str=‘‘‘PassionissweetLovemakesweakYousaidyoucherisedfreedomsoYourefusedtoletitgoFollowyourfaithLoveandhateneverfailedtoseizethedayDon‘tgiveyourselfawayOhwhen 查看详情

综合练习:英文词频统计(代码片段)

#coding=utf-8song=‘‘‘Skies,wherethebluebirdsfly,Cloudswherethepeopleplacetheirsoulsonto.Brighter,thesunshinesthatgothroughmytears,likesearchingforwhathealsmysorrows,Cry,whenthetwilight‘scome,Rise,when 查看详情

综合练习:英文词频统计(代码片段)

词频统计预处理下载一首英文的歌词或文章将所有,.?!’:等分隔符全部替换为空格将所有大写转换为小写生成单词列表生成词频统计排序排除语法型词汇,代词、冠词、连词输出词频最大TOP101#-*-coding:UTF-8-*-2#-*-author:yjw-*-34Music=... 查看详情

综合练习:词频统计(代码片段)

1.英文词频统下载一首英文的歌词或文章将所有,.?!’:等分隔符全部替换为空格将所有大写转换为小写生成单词列表生成词频统计排序排除语法型词汇,代词、冠词、连词输出词频最大TOP201.英文词频统下载一首英文的歌词或文... 查看详情

综合练习:词频统计(代码片段)

综合练习词频统计预处理下载一首英文的歌词或文章将所有,.?!’:等分隔符全部替换为空格将所有大写转换为小写生成单词列表生成词频统计排序排除语法型词汇,代词、冠词、连词输出词频最大TOP20将分析对象存为utf-8编码... 查看详情

综合练习:词频统计(代码片段)

综合练习词频统计预处理下载一首英文的歌词或文章将所有,.?!’:等分隔符全部替换为空格将所有大写转换为小写生成单词列表生成词频统计排序排除语法型词汇,代词、冠词、连词输出词频最大TOP20将分析对象存为utf-8编码... 查看详情

综合练习:词频统计(代码片段)

下载一首英文的歌词或文章将所有,.?!’:等分隔符全部替换为空格将所有大写转换为小写生成单词列表f=open(‘news.txt‘,‘r‘)news=f.read()f.close()sep=‘‘‘,.‘!"?:‘‘‘forcinsep:news=news.replace(c,‘‘)wordList=news.lower().split()forwinwordLis... 查看详情

综合练习:词频统计(代码片段)

1.英文词频统f=open(‘lyric.txt‘,‘r‘)lyric=f.read()f.close()punctuation=‘‘‘,.?/:;‘"‘‘‘a=‘in‘,‘on‘,‘with‘,‘by‘,‘for‘,‘at‘,‘about‘,‘under‘,‘of‘,‘i‘,‘a‘,‘is‘,‘its‘,‘so‘,‘and‘,‘dont‘,‘it‘,‘to‘,‘ill‘,‘t... 查看详情

综合练习:词频统计(代码片段)

#读取英文歌词文件file=open(‘dd.txt‘,‘r‘,encoding=‘utf-8‘)word=file.read()file.close()#排除符号di=‘‘‘.,‘‘""?!:;‘‘‘foriindi:word=word.replace(i,‘‘)#大写转换小写空格分割word=word.lower().split()#定义字典存放数据diet=forcinword:coun 查看详情

综合练习:词频统计(代码片段)

 下载一首英文的歌词或文章f=open("F:\song.txt","r")str1=f.read()f.close() 将所有,.?!’:等分隔符全部替换为空格c="‘,./‘"forwinc:str1.replace(w,‘‘)将所有大写转换为小写生成单词列表wordList=str1.lower().split()生成词频统计wordDict=word... 查看详情

综合练习:词频统计(代码片段)

联系要求下载一首英文的歌词或文章将歌词存入文件中,然后读取出来将所有,.?!’:等分隔符全部替换为空格将所有大写转换为小写生成单词列表生成词频统计排序排除语法型词汇,代词、冠词、连词输出词频最大TOP20将分析... 查看详情

综合练习:词频统计(代码片段)

str_context=‘‘‘Thereareseveralreasonsforthis.Tobeginwith,nowadayscollegestudentsaimtoohigh.Alltheywantare“good”jobswhichcouldoffergoodsalary,comfortableworkingconditions,highsocialstatusamongothers.Co 查看详情

综合练习:词频统计(代码片段)

song=‘‘‘Anemptystreet,Anemptyhouse,Aholeinsidemyheart,I‘mallalone,Theroomsaregettingsmaller,Iwonderhow,Iwonderwhy,Iwonderwheretheyare,Thedayswehad,Thesongswesangtogether,Ohyeah,Andohmylove,I‘mholdingo 查看详情

综合练习:词频统计(代码片段)

song=‘‘‘justcolseyoureyes,thesunisgoingdownyou‘llbeallright,noonecanhurtyounowcomemorninglight,youandi’llbesafeandsound‘‘‘str1=song.replace(‘’‘,‘‘).lower().split()str2=song.split()c=foriinstr2:count 查看详情

综合练习:词频统计(代码片段)

file=open(‘song.txt‘,‘r‘)#只读打开文件lyrics=file.read()#读取文件内容file.close()#关闭文件资源sep=‘‘‘,.?!:‘-‘‘‘forcinsep:song=song.replace(c,‘‘)wordList=song.lower().split()wordDict=forwinwordList:wordDict[w]=wordDic 查看详情

综合练习:词频统计(代码片段)

f=open(‘/Users/Administrator/Desktop/we.txt‘,‘r‘)text=f.read()f.close()print(text)rep=‘‘‘,.!:?‘‘‘exclude=‘a‘,‘the‘,‘for‘,‘in‘,‘i‘,‘my‘,‘that‘,‘of‘,‘have‘,‘and‘,‘had‘,‘it‘,‘are‘forcinrep:str=text.rep 查看详情