发布网友 发布时间:2022-05-13 22:05
共2个回答
热心网友 时间:2023-11-01 03:08
不应该是school么? 比例是0.333333333
def least_vowel_words(text):
热心网友 时间:2023-11-01 03:08
def isVowel(a):
if a in "aeiouAEIOU":
return True
else:
return False
def Calculate(a):
i = 0
for s in a:
if isVowel(s):
i+=1
return i/len(a)
def least_vowel_words(text):
dicte = dict()
list = text.strip('.').split()
for a in range(0,len(list)):
dicte[list[a]]= str(Calculate(list[a]))
i=min(dicte.values())
for k in dicte:
if dicte[k]==i:
print (str(i)+":"+str(k))追问谢谢,但是有一个问题,如果text = ‘this morning is nice. how do you think?'
你的code没办法去掉这个text里面的句号和问号呀。