python函数练习

Posted alive

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python函数练习相关的知识,希望对你有一定的参考价值。

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函数练习的主要内容,如果未能解决你的问题,请参考以下文章

Python函数练习题

python内置函数代码练习

python代码练习(每天一小时)

python 函数 练习

python四:函数练习--小白博客

Python3练习题系列(03)