码迷,mamicode.com
首页 > 编程语言 > 详细

python函数练习

时间:2018-03-27 18:54:56      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:ems   read   log   ted   print   int   AC   ace   [1]   

file=open(‘tt.txt‘,‘r‘)
news=file.read()

myreplace=‘‘‘,()!`%&*‘‘‘
for i in myreplace:
       myreplace=myreplace.replace(i,‘ ‘)

wordlist=news.lower().split()
wordict={}
wordset=set(wordlist)
wordCutSet={‘i‘,‘we‘,‘the‘}
wordset=wordset-wordCutSet


for w in wordset:
       wordict[w]=wordlist.count(w)

print(wordict)
sortword=sorted(wordict.items(),key=lambda e:e[1],reverse=True)

print(sortword)

  

python函数练习

标签:ems   read   log   ted   print   int   AC   ace   [1]   

原文地址:https://www.cnblogs.com/qq1141100952com/p/8658728.html

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