题目:文本文件sentence.txt中保存一句英文(不含标点符号),请把还有元音字母的个数最多的前三个英文单词打印出来,并按要求输出。具体要求入下。
(1)以只读方式读取文本文件sentence.txt
(2)句子中单词之间以空格分割。
(3)对单词中含有元音字母个数进行递减排序
(4)输出含有超过2个元音字母的单词;
(5)输出时含有元音字母的单词靠左排列,占17位
示例:sentence.txt中句子如下
Only once in a lifetime that a special dream comes suddenly your entire world seems beautiful and new
输出:
beautiful 5
lifetime 4
special 3
entire 3
我写的代码:
#e10.1CalHamlet.py
def getText():
txt=open('sentence.txt','r').read()
txt=txt.lower()
return txt
hamletTxt=getText()
words=hamletTxt.split()
counts={}
letter='aeiou'
for word in words:
if letter in word:
counts[word] = counts.get(word,0) +1
items=list(counts.items())
items.sort(key=lambda x:x[1], reverse=True)
for i in range(4):
word,count=items[i]
print('{0:<17}'.format(word,count))
我的疑惑点: 怎么对单词中的元音字母个数进行统计并输出单词呢
还有最后两行的报错要怎么修改鸭
各位朋友们 一起探讨吧