0
番号を印刷しようとしています。母音の私がこのコードを実行すると、私は1,2,3,4
しか印刷されません。私は間違いがどこにあり、どのように修正するのですか?母音の数を数える
vowels='a','e','i','o','u'
s= 'hellohello'
count = 0
for letters in s:
if letters in vowels:
count+=1
print (count)
print(count)からインデントを削除します。 –