到目前为止,这是我计算元音的代码。我需要扫描一个句子,计算和比较元音,然后显示出现频率最高的元音。
from collections import Counter
vowelCounter = Counter()
sentence=input("sentence")
for word in sentence:
vowelCounter[word] += 1
vowel, vowelCount= Counter(vowel for vowel in sentence.lower() if vowel in "aeiou").most_common(1)[0]
有没有人有更好的方法来做到这一点?