2016-09-17 96 views
0

試圖打印沒有。的元音。當我運行此代碼時,我得到1,2,3,4我打算只打印4.我的錯誤在哪裏,我將如何糾正它?計算元音的數量

vowels='a','e','i','o','u' 
s= 'hellohello' 
count = 0 

for letters in s: 
    if letters in vowels: 
     count+=1 
     print (count) 
+0

刪除print(count) –

回答

0

你大部分都是正確的,但是你打印的是循環而不是最後。

for letters in s: 
    if letters in vowels: 
     count+=1 
# de indent to close the loop 
print (count) 
0

count應該出的for loop.So它打印一次。

vowels='a','e','i','o','u' 
s= 'hellohello' 
count = 0 
for letters in s: 
    if letters in vowels: 
      count+=1 
print (count)