そのため、コンピューターにあるテキスト ファイルの母音 (具体的には eio) の数をカウントするプログラムを作成することができました。しかし、どれが最も多く発生するかを示す方法は、私の人生ではわかりません。私は次のようなことを言うと思いました
for ch in 'i':
return numvowel?
ステップが何なのかよくわかりません。基本的には最後に「iという文字がテキストファイルの中で一番多く出てきました」と出力してもらいたい
def vowelCounter():
inFile = open('file.txt', 'r')
contents = inFile.read()
# variable to store total number of vowels
numVowel = 0
# This counts the total number of occurrences of vowels o e i.
for ch in contents:
if ch in 'i':
numVowel = numVowel + 1
if ch in 'e':
numVowel = numVowel + 1
if ch in 'o':
numVowel = numVowel + 1
print('file.txt has', numVowel, 'vowel occurences total')
inFile.close()
vowelCounter()